From: David Miller Date: Tue, 15 May 2007 08:40:09 +0000 (-0700) Subject: [PATCH] SERIAL SUNHV: Add an ID string. X-Git-Tag: v2.6.21.2~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18d588ffa31437efc49d0b0412905a9a304aa2d1;p=thirdparty%2Fkernel%2Fstable.git [PATCH] SERIAL SUNHV: Add an ID string. The 'compatible' property can be SUNW,sun4v-console as well as 'qcn'. Signed-off-by: David S. Miller Signed-off-by: Chris Wright --- diff --git a/drivers/serial/sunhv.c b/drivers/serial/sunhv.c index 40d48566215c0..c3a6bd2e7950b 100644 --- a/drivers/serial/sunhv.c +++ b/drivers/serial/sunhv.c @@ -493,6 +493,10 @@ static struct of_device_id hv_match[] = { .name = "console", .compatible = "qcn", }, + { + .name = "console", + .compatible = "SUNW,sun4v-console", + }, {}, }; MODULE_DEVICE_TABLE(of, hv_match);