Thanks Andrew..
On Wed, Jan 30, 2013 at 11:25 PM, Andrew Fish wrote:
> Sateesh,
>
> There are two classes of drivers in EFI:
> 1) Device Drivers
> 2) Bus drivers
>
> A device driver, like your example, adds a protocol to an existing handle.
> A Bus driver adds child handles.
>
> In your case I t
Sateesh,
There are two classes of drivers in EFI:
1) Device Drivers
2) Bus drivers
A device driver, like your example, adds a protocol to an existing handle. A
Bus driver adds child handles.
In your case I think you will find that there already is a device path on the
PciIo handle that was cr
Hi,
I am writing option ROM driver for my PCIe device. How to add Device path
protocol to my device.
1) Here is the my driver binding protocol:
EFI_DRIVER_BINDING_PROTOCOL gSpDriverBinding = {
SpDriverBindingSupported,
SpDriverBindingStart,
SpDriverBindingStop,
0xa,
NULL,
NULL
};