diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2008-04-29 08:40:37 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2008-04-29 09:16:18 -0400 |
commit | bc775eac63c16dbcfabc4c6e949c0228edf3e11f (patch) | |
tree | be98a04a66f128217c0fa48183177456c3a6261e /drivers/serial | |
parent | 6c39103ce5192bdb2195f3daab7323dfa44fb52e (diff) |
[POWERPC] mpc5200: Fix unterminated of_device_id table
If CONFIG_PPC_MPC5121 is not set, then the of_device_id table for the
mpc5200 serial driver will not get terminated with a NULL entry.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/serial')
-rw-r--r-- | drivers/serial/mpc52xx_uart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/mpc52xx_uart.c b/drivers/serial/mpc52xx_uart.c index d93b3578c5e2..7a3625f52a03 100644 --- a/drivers/serial/mpc52xx_uart.c +++ b/drivers/serial/mpc52xx_uart.c | |||
@@ -1221,8 +1221,8 @@ static struct of_device_id mpc52xx_uart_of_match[] = { | |||
1221 | #endif | 1221 | #endif |
1222 | #ifdef CONFIG_PPC_MPC512x | 1222 | #ifdef CONFIG_PPC_MPC512x |
1223 | { .compatible = "fsl,mpc5121-psc-uart", .data = &mpc512x_psc_ops, }, | 1223 | { .compatible = "fsl,mpc5121-psc-uart", .data = &mpc512x_psc_ops, }, |
1224 | {}, | ||
1225 | #endif | 1224 | #endif |
1225 | {}, | ||
1226 | }; | 1226 | }; |
1227 | 1227 | ||
1228 | static int __devinit | 1228 | static int __devinit |