From: Bill Pemberton Date: Mon, 19 Nov 2012 18:24:04 +0000 (-0500) Subject: tty: remove use of __devinitdata X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=6b1cb9305094052d282e039b11a6e667ac48559e;p=deliverable%2Flinux.git tty: remove use of __devinitdata CONFIG_HOTPLUG is going away as an option so __devinitdata is no longer needed. Signed-off-by: Bill Pemberton Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/hvc/hvcs.c b/drivers/tty/hvc/hvcs.c index 506a28e5564f..5afe3b6041cf 100644 --- a/drivers/tty/hvc/hvcs.c +++ b/drivers/tty/hvc/hvcs.c @@ -676,7 +676,7 @@ static int khvcsd(void *unused) return 0; } -static struct vio_device_id hvcs_driver_table[] __devinitdata= { +static struct vio_device_id hvcs_driver_table[] = { {"serial-server", "hvterm2"}, { "", "" } };