pci: Make load_oprom and run_oprom independent

At present should_load_oprom() calls board_should_run_oprom() to
determine whether oprom should be loaded. But sometimes we just
want to load oprom without running. Make them independent.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Bin Meng 2016-06-14 02:02:39 -07:00
parent b45dd66225
commit c0aea6ba8b
1 changed files with 1 additions and 4 deletions

View File

@ -41,10 +41,7 @@ __weak bool board_should_run_oprom(struct udevice *dev)
static bool should_load_oprom(struct udevice *dev)
{
if (board_should_run_oprom(dev))
return 1;
return 0;
return true;
}
__weak uint32_t board_map_oprom_vendev(uint32_t vendev)