diff options
| author | Tom Rini <[email protected]> | 2026-03-23 13:53:06 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-04-07 11:32:49 -0600 |
| commit | 3fe899fbeae62b8408c1e70532fe58cdab959dd0 (patch) | |
| tree | 5289f355d241629bd92e61469096b35850c374bc /drivers/serial | |
| parent | 25d55485dbced189f8d0400fb0da58b19e196662 (diff) | |
serial: omap: Fix "unused" warnings with SERIAL_PRESENT=n and OF_REAL=y
The definition of our ID table (and of_to_plat function) is guarded with
OF_REAL however the U_BOOT_DRIVER that would in turn use the table is
guarded with SERIAL_PRESENT. To avoid a potential warning we must also
guard both with SERIAL_PRESENT.
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers/serial')
| -rw-r--r-- | drivers/serial/serial_omap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/serial_omap.c b/drivers/serial/serial_omap.c index 224d9cbf29d..8289336e08d 100644 --- a/drivers/serial/serial_omap.c +++ b/drivers/serial/serial_omap.c @@ -104,7 +104,7 @@ DEBUG_UART_FUNCS #if CONFIG_IS_ENABLED(DM_SERIAL) -#if CONFIG_IS_ENABLED(OF_REAL) +#if CONFIG_IS_ENABLED(OF_REAL) && CONFIG_IS_ENABLED(SERIAL_PRESENT) static int omap_serial_of_to_plat(struct udevice *dev) { struct ns16550_plat *plat = dev_get_plat(dev); |
