[PATCH] serial8250-em: Add DT support

From: Magnus Damm
Date: Wed May 09 2012 - 02:54:18 EST


From: Magnus Damm <damm@xxxxxxxxxxxxx>

Update the 8250_em driver to support DT.

Signed-off-by: Magnus Damm <damm@xxxxxxxxxxxxx>
---

Applies of top of "[PATCH] serial8250-em: Emma Mobile UART driver V2"
(included in linux-next 20120508) and the recently posted
"[PATCH] serial8250-em: clk_get() IS_ERR() error handling fix".

drivers/tty/serial/8250/8250_em.c | 7 +++++++
1 file changed, 7 insertions(+)

--- 0002/drivers/tty/serial/8250/8250_em.c
+++ work/drivers/tty/serial/8250/8250_em.c 2012-05-09 15:39:22.000000000 +0900
@@ -163,9 +163,16 @@ static int __devexit serial8250_em_remov
return 0;
}

+static const struct of_device_id serial8250_em_dt_ids[] __devinitconst = {
+ { .compatible = "renesas,em-uart", },
+ {},
+};
+MODULE_DEVICE_TABLE(of, serial8250_em_dt_ids);
+
static struct platform_driver serial8250_em_platform_driver = {
.driver = {
.name = "serial8250-em",
+ .of_match_table = serial8250_em_dt_ids,
.owner = THIS_MODULE,
},
.probe = serial8250_em_probe,
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/