aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-11-19 13:24:04 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-11-21 15:23:46 -0800
commit6b1cb9305094052d282e039b11a6e667ac48559e (patch)
treeea5aa558d4c205e096d748dc4b0266656b9ba4c2 /drivers/tty
parenttty: remove use of __devinit (diff)
downloadlinux-dev-6b1cb9305094052d282e039b11a6e667ac48559e.tar.xz
linux-dev-6b1cb9305094052d282e039b11a6e667ac48559e.zip
tty: remove use of __devinitdata
CONFIG_HOTPLUG is going away as an option so __devinitdata is no longer needed. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r--drivers/tty/hvc/hvcs.c2
1 files changed, 1 insertions, 1 deletions
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"},
{ "", "" }
};