Add function doxygen header for VgaMiniPort module.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5075 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
813bfd0813
commit
fcf03596d1
|
@ -1,4 +1,5 @@
|
||||||
/** @file
|
/** @file
|
||||||
|
Implementation of EFI_COMPONENT_NAME_PROTOCOL for VgaminiPort driver.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2007 Intel Corporation. All rights reserved
|
Copyright (c) 2006 - 2007 Intel Corporation. All rights reserved
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
|
|
|
@ -33,26 +33,20 @@ EFI_DRIVER_BINDING_PROTOCOL gPciVgaMiniPortDriverBinding = {
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
//
|
/**
|
||||||
// Driver Entry Point
|
Driver entry point for VgaMiniPort driver.
|
||||||
//
|
|
||||||
|
@param ImageHandle Driver image handle
|
||||||
|
@param SystemTable Point to EFI_SYSTEM_TABLE
|
||||||
|
|
||||||
|
@retval Status of install driver binding protocol.
|
||||||
|
**/
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
EFIAPI
|
EFIAPI
|
||||||
PciVgaMiniPortDriverEntryPoint (
|
PciVgaMiniPortDriverEntryPoint (
|
||||||
IN EFI_HANDLE ImageHandle,
|
IN EFI_HANDLE ImageHandle,
|
||||||
IN EFI_SYSTEM_TABLE *SystemTable
|
IN EFI_SYSTEM_TABLE *SystemTable
|
||||||
)
|
)
|
||||||
/**
|
|
||||||
|
|
||||||
Routine Description:
|
|
||||||
Driver Entry Point.
|
|
||||||
|
|
||||||
Arguments:
|
|
||||||
(Standard EFI Image entry - EFI_IMAGE_ENTRY_POINT)
|
|
||||||
|
|
||||||
Returns:
|
|
||||||
EFI_STATUS
|
|
||||||
**/
|
|
||||||
{
|
{
|
||||||
return EfiLibInstallDriverBindingComponentName2 (
|
return EfiLibInstallDriverBindingComponentName2 (
|
||||||
ImageHandle,
|
ImageHandle,
|
||||||
|
@ -287,13 +281,13 @@ PciVgaMiniPortDriverBindingStop (
|
||||||
//
|
//
|
||||||
|
|
||||||
/**
|
/**
|
||||||
GC_TODO: Add function description
|
Thunk function of EFI_VGA_MINI_PORT_SET_MODE
|
||||||
|
|
||||||
@param This GC_TODO: add argument description
|
@param This Point to instance of EFI_VGA_MINI_PORT_PROTOCOL
|
||||||
@param ModeNumber GC_TODO: add argument description
|
@param ModeNumber Mode number
|
||||||
|
|
||||||
@retval EFI_UNSUPPORTED GC_TODO: Add description for return value
|
@retval EFI_UNSUPPORTED Invalid mode number
|
||||||
@retval EFI_SUCCESS GC_TODO: Add description for return value
|
@retval EFI_SUCCESS Success
|
||||||
|
|
||||||
**/
|
**/
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
|
@ -309,3 +303,4 @@ PciVgaMiniPortSetMode (
|
||||||
|
|
||||||
return EFI_SUCCESS;
|
return EFI_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue