device: Fix incompatible-pointer-types build error
The build error `incompatible-pointer-types` occurs while using `pci_dev_request_bus_master` as part of device ops Signed-off-by: Subrata Banik <subrata.banik@intel.com> Change-Id: I3b1ce85b8db1ddf9ac860415edbe64694b91b3d1 Reviewed-on: https://review.coreboot.org/c/coreboot/+/45122 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
a903ea8d62
commit
86e53267c4
|
@ -133,7 +133,7 @@ static __always_inline
|
||||||
#if ENV_PCI_SIMPLE_DEVICE
|
#if ENV_PCI_SIMPLE_DEVICE
|
||||||
void pci_dev_request_bus_master(pci_devfn_t dev)
|
void pci_dev_request_bus_master(pci_devfn_t dev)
|
||||||
#else
|
#else
|
||||||
void pci_dev_request_bus_master(const struct device *dev)
|
void pci_dev_request_bus_master(struct device *dev)
|
||||||
#endif /* ENV_PCI_SIMPLE_DEVICE */
|
#endif /* ENV_PCI_SIMPLE_DEVICE */
|
||||||
{
|
{
|
||||||
if (CONFIG(PCI_ALLOW_BUS_MASTER))
|
if (CONFIG(PCI_ALLOW_BUS_MASTER))
|
||||||
|
|
Loading…
Reference in New Issue