mirror of https://github.com/acidanthera/audk.git
align some line to conform with code style
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4325 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
94b73c2482
commit
b819abbb7f
|
@ -429,8 +429,8 @@ Returns:
|
||||||
&mConIn.TextInEx,
|
&mConIn.TextInEx,
|
||||||
&gEfiSimplePointerProtocolGuid,
|
&gEfiSimplePointerProtocolGuid,
|
||||||
&mConIn.SimplePointer,
|
&mConIn.SimplePointer,
|
||||||
&gEfiAbsolutePointerProtocolGuid,
|
&gEfiAbsolutePointerProtocolGuid,
|
||||||
&mConIn.AbsolutePointer,
|
&mConIn.AbsolutePointer,
|
||||||
&gEfiPrimaryConsoleInDeviceGuid,
|
&gEfiPrimaryConsoleInDeviceGuid,
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
|
@ -605,21 +605,21 @@ Returns:
|
||||||
ConInPrivate->AbsolutePointer.Mode = &ConInPrivate->AbsolutePointerMode;
|
ConInPrivate->AbsolutePointer.Mode = &ConInPrivate->AbsolutePointerMode;
|
||||||
|
|
||||||
Status = ConSplitterGrowBuffer (
|
Status = ConSplitterGrowBuffer (
|
||||||
sizeof (EFI_ABSOLUTE_POINTER_PROTOCOL *),
|
sizeof (EFI_ABSOLUTE_POINTER_PROTOCOL *),
|
||||||
&ConInPrivate->AbsolutePointerListCount,
|
&ConInPrivate->AbsolutePointerListCount,
|
||||||
(VOID **) &ConInPrivate->AbsolutePointerList
|
(VOID **) &ConInPrivate->AbsolutePointerList
|
||||||
);
|
);
|
||||||
if (EFI_ERROR (Status)) {
|
if (EFI_ERROR (Status)) {
|
||||||
return EFI_OUT_OF_RESOURCES;
|
return EFI_OUT_OF_RESOURCES;
|
||||||
}
|
}
|
||||||
|
|
||||||
Status = gBS->CreateEvent (
|
Status = gBS->CreateEvent (
|
||||||
EVT_NOTIFY_WAIT,
|
EVT_NOTIFY_WAIT,
|
||||||
TPL_NOTIFY,
|
TPL_NOTIFY,
|
||||||
ConSplitterAbsolutePointerWaitForInput,
|
ConSplitterAbsolutePointerWaitForInput,
|
||||||
ConInPrivate,
|
ConInPrivate,
|
||||||
&ConInPrivate->AbsolutePointer.WaitForInput
|
&ConInPrivate->AbsolutePointer.WaitForInput
|
||||||
);
|
);
|
||||||
ASSERT_EFI_ERROR (Status);
|
ASSERT_EFI_ERROR (Status);
|
||||||
|
|
||||||
ConInPrivate->SimplePointer.Mode = &ConInPrivate->SimplePointerMode;
|
ConInPrivate->SimplePointer.Mode = &ConInPrivate->SimplePointerMode;
|
||||||
|
|
Loading…
Reference in New Issue