diff options
| author | Tom Rini <[email protected]> | 2024-07-15 13:35:53 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-07-23 10:37:48 -0600 |
| commit | b0ee3fe642c914f15055827ab722618daec9e58b (patch) | |
| tree | 3d50925fa4b7931a070fb727f9eef69e5681dd6d /drivers/serial | |
| parent | 502d7d80ae0c83fa159e90d035b0cdfbed458057 (diff) | |
arm: ti: Remove omap4 platform support
There are no longer any OMAP4 platforms in U-Boot, remove the related
functionality.
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers/serial')
| -rw-r--r-- | drivers/serial/ns16550.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/serial/ns16550.c b/drivers/serial/ns16550.c index 42b69719dd7..6fcb5b523ac 100644 --- a/drivers/serial/ns16550.c +++ b/drivers/serial/ns16550.c @@ -227,8 +227,7 @@ static void ns16550_setbrg(struct ns16550 *com_port, int baud_divisor) void ns16550_init(struct ns16550 *com_port, int baud_divisor) { -#if (defined(CONFIG_SPL_BUILD) && \ - (defined(CONFIG_OMAP34XX) || defined(CONFIG_OMAP44XX))) +#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_OMAP34XX) /* * On some OMAP3/OMAP4 devices when UART3 is configured for boot mode * before SPL starts only THRE bit is set. We have to empty the |
