Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit de88b340 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman
Browse files

tty: remove use of __devinitdata



CONFIG_HOTPLUG is going away as an option so __devinitdata is no
longer needed.

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Cc: Alan Cox <alan@linux.intel.com>
Cc: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6b1cb930
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@

static const char hvc_opal_name[] = "hvc_opal";

static struct of_device_id hvc_opal_match[] __devinitdata = {
static struct of_device_id hvc_opal_match[] = {
	{ .name = "serial", .compatible = "ibm,opal-console-raw" },
	{ .name = "serial", .compatible = "ibm,opal-console-hvsi" },
	{ },
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@

static const char hvc_driver_name[] = "hvc_console";

static struct vio_device_id hvc_driver_table[] __devinitdata = {
static struct vio_device_id hvc_driver_table[] = {
	{"serial", "hvterm1"},
#ifndef HVC_OLD_HVSI
	{"serial", "hvterm-protocol"},
+1 −1
Original line number Diff line number Diff line
@@ -1758,7 +1758,7 @@ static void rp_flush_buffer(struct tty_struct *tty)

#ifdef CONFIG_PCI

static struct pci_device_id __devinitdata __used rocket_pci_ids[] = {
static struct pci_device_id __used rocket_pci_ids[] = {
	{ PCI_DEVICE(PCI_VENDOR_ID_RP, PCI_ANY_ID) },
	{ }
};
+1 −1
Original line number Diff line number Diff line
@@ -1987,7 +1987,7 @@ enum pci_board_num_t {
 * see first lines of serial_in() and serial_out() in 8250.c
*/

static struct pciserial_board pci_boards[] __devinitdata = {
static struct pciserial_board pci_boards[] = {
	[pbn_default] = {
		.flags		= FL_BASE0,
		.num_ports	= 1,
+1 −1
Original line number Diff line number Diff line
@@ -370,7 +370,7 @@ static const struct pnp_device_id pnp_dev_table[] = {

MODULE_DEVICE_TABLE(pnp, pnp_dev_table);

static char *modem_names[] __devinitdata = {
static char *modem_names[] = {
	"MODEM", "Modem", "modem", "FAX", "Fax", "fax",
	"56K", "56k", "K56", "33.6", "28.8", "14.4",
	"33,600", "28,800", "14,400", "33.600", "28.800", "14.400",
Loading