omap-common: Boot device define instead of hardcoded value

Now that SPL boot devices are clearly defined, we can use BOOT_DEVICE_QSPI_4
instead of a hardcoded value.

Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
This commit is contained in:
Paul Kocialkowski 2015-07-15 16:02:21 +02:00 committed by Tom Rini
parent 62c5674ea1
commit df844772f7

View File

@ -48,14 +48,14 @@ void save_omap_boot_params(void)
if (boot_device == BOOT_DEVICE_NAND_I2C) if (boot_device == BOOT_DEVICE_NAND_I2C)
boot_device = BOOT_DEVICE_NAND; boot_device = BOOT_DEVICE_NAND;
#endif #endif
#if defined(CONFIG_DRA7XX) || defined(CONFIG_AM57XX) #ifdef BOOT_DEVICE_QSPI_4
/* /*
* We get different values for QSPI_1 and QSPI_4 being used, but * We get different values for QSPI_1 and QSPI_4 being used, but
* don't actually care about this difference. Rather than * don't actually care about this difference. Rather than
* mangle the later code, if we're coming in as QSPI_4 just * mangle the later code, if we're coming in as QSPI_4 just
* change to the QSPI_1 value. * change to the QSPI_1 value.
*/ */
if (boot_device == 11) if (boot_device == BOOT_DEVICE_QSPI_4)
boot_device = BOOT_DEVICE_SPI; boot_device = BOOT_DEVICE_SPI;
#endif #endif