Global variables have been moved backward ahead of functions.
Only a few cases were left due to its module structure. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6816 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -15,6 +15,16 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
#include "Uhci.h"
|
||||
|
||||
|
||||
EFI_DRIVER_BINDING_PROTOCOL gUhciDriverBinding = {
|
||||
UhciDriverBindingSupported,
|
||||
UhciDriverBindingStart,
|
||||
UhciDriverBindingStop,
|
||||
0x20,
|
||||
NULL,
|
||||
NULL
|
||||
};
|
||||
|
||||
/**
|
||||
Provides software reset for the USB host controller according to UEFI 2.0 spec.
|
||||
|
||||
@ -1800,11 +1810,3 @@ UhciDriverBindingStop (
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
EFI_DRIVER_BINDING_PROTOCOL gUhciDriverBinding = {
|
||||
UhciDriverBindingSupported,
|
||||
UhciDriverBindingStart,
|
||||
UhciDriverBindingStop,
|
||||
0x20,
|
||||
NULL,
|
||||
NULL
|
||||
};
|
||||
|
Reference in New Issue
Block a user