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

Commit 4af48c8c authored by Dominik Brodowski's avatar Dominik Brodowski Committed by Linus Torvalds
Browse files

[PATCH] pcmcia: id_table for synclink_cs.c



Add pcmcia_device_id table.

Signed-off-by: default avatarDominik Brodowski <linux@dominikbrodowski.net>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent a4ed3598
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -3081,6 +3081,12 @@ void mgslpc_remove_device(MGSLPC_INFO *remove_info)
	}
}

static struct pcmcia_device_id mgslpc_ids[] = {
	PCMCIA_DEVICE_MANF_CARD(0x02c5, 0x0050),
	PCMCIA_DEVICE_NULL
};
MODULE_DEVICE_TABLE(pcmcia, mgslpc_ids);

static struct pcmcia_driver mgslpc_driver = {
	.owner		= THIS_MODULE,
	.drv		= {
@@ -3088,6 +3094,7 @@ static struct pcmcia_driver mgslpc_driver = {
	},
	.attach		= mgslpc_attach,
	.detach		= mgslpc_detach,
	.id_table	= mgslpc_ids,
};

static struct tty_operations mgslpc_ops = {