diff options
author | Stefan-gabriel Mirea <stefan-gabriel.mirea@nxp.com> | 2019-08-23 19:11:35 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-09-04 12:43:56 +0200 |
commit | 2bd3661ea0eb2056852cbc58c5d96bb4df2f164f (patch) | |
tree | 6bd74798b576356ffe4abfc98ab099a04189af80 /drivers/tty | |
parent | 7030082a7415d18e3befdf1f9ec05b3d5de98de4 (diff) |
serial: fsl_linflexuart: Update compatible string
The "fsl,s32-linflexuart" compatible string is too generic. Make it SoC
specific.
Signed-off-by: Stefan-Gabriel Mirea <stefan-gabriel.mirea@nxp.com>
Link: https://lore.kernel.org/r/20190823191115.18490-4-stefan-gabriel.mirea@nxp.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/serial/fsl_linflexuart.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/serial/fsl_linflexuart.c b/drivers/tty/serial/fsl_linflexuart.c index 8aea7822b731..9ed97614a941 100644 --- a/drivers/tty/serial/fsl_linflexuart.c +++ b/drivers/tty/serial/fsl_linflexuart.c @@ -127,7 +127,7 @@ static const struct of_device_id linflex_dt_ids[] = { { - .compatible = "fsl,s32-linflexuart", + .compatible = "fsl,s32v234-linflexuart", }, { /* sentinel */ } }; @@ -801,7 +801,7 @@ static int __init linflex_early_console_setup(struct earlycon_device *device, return 0; } -OF_EARLYCON_DECLARE(linflex, "fsl,s32-linflexuart", +OF_EARLYCON_DECLARE(linflex, "fsl,s32v234-linflexuart", linflex_early_console_setup); #define LINFLEX_CONSOLE (&linflex_console) |