From patchwork Mon Nov 19 18:24:04 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [295/493] tty: remove use of __devinitdata X-Patchwork-Submitter: Bill Pemberton X-Patchwork-Id: 200169 Message-Id: <1353349642-3677-295-git-send-email-wfp5p@virginia.edu> To: gregkh@linuxfoundation.org Cc: linuxppc-dev@lists.ozlabs.org Date: Mon, 19 Nov 2012 13:24:04 -0500 From: Bill Pemberton List-Id: Linux on PowerPC Developers Mail List CONFIG_HOTPLUG is going away as an option so __devinitdata is no longer needed. Signed-off-by: Bill Pemberton Cc: linuxppc-dev@lists.ozlabs.org --- drivers/tty/hvc/hvcs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/tty/hvc/hvcs.c b/drivers/tty/hvc/hvcs.c index 506a28e..5afe3b6 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"}, { "", "" } };