From: Bin Meng Date: Tue, 14 Jun 2016 09:02:38 +0000 (-0700) Subject: pci: Remove CONFIG_ALWAYS_LOAD_OPROM X-Git-Tag: v2016.09-rc1~141^2~11 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b45dd66225dfe60d692efde1e7bd36b5842434b7;p=pandora-u-boot.git pci: Remove CONFIG_ALWAYS_LOAD_OPROM This option is defined at nowhere. Remove it. Signed-off-by: Bin Meng Reviewed-by: Simon Glass --- diff --git a/drivers/pci/pci_rom.c b/drivers/pci/pci_rom.c index 9eb605be742..3ae9231b5f7 100644 --- a/drivers/pci/pci_rom.c +++ b/drivers/pci/pci_rom.c @@ -41,8 +41,6 @@ __weak bool board_should_run_oprom(struct udevice *dev) static bool should_load_oprom(struct udevice *dev) { - if (IS_ENABLED(CONFIG_ALWAYS_LOAD_OPROM)) - return 1; if (board_should_run_oprom(dev)) return 1;