device/pci_ops: Remove unnecessary weak implementation

I doubt this is or will ever be referenced anywhere. And if, we
probably shouldn't return.

Change-Id: I3704fec694c5e5a9d5ff7d78d8bf2f23cf463e3c
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/26054
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Nico Huber 2018-05-04 14:14:38 +02:00 committed by Martin Roth
parent 42ff2c05d9
commit ea4d692d57
1 changed files with 0 additions and 7 deletions

View File

@ -20,13 +20,6 @@
#include <device/pci_ids.h>
#include <device/pci_ops.h>
/* Overwrite with architecture specific method */
const struct pci_bus_operations __attribute__((weak))
*pci_bus_default_ops(struct device *dev)
{
return NULL;
}
static const struct pci_bus_operations *pci_bus_ops(struct bus *bus, struct device *dev)
{
const struct pci_bus_operations *bops;