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

Commit 25f959d6 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds
Browse files

drivers/telephony/ixj.c: fix warning



  CC      drivers/telephony/ixj.o
drivers/telephony/ixj.c:287: warning: \u2018ixj_pci_tbl\u2019 defined but not used

Reported-by: default avatarNamhyung Kim <namhyung@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e462c448
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -284,12 +284,11 @@ static int samplerate = 100;

module_param(ixjdebug, int, 0);

static struct pci_device_id ixj_pci_tbl[] __devinitdata = {
static DEFINE_PCI_DEVICE_TABLE(ixj_pci_tbl) = {
	{ PCI_VENDOR_ID_QUICKNET, PCI_DEVICE_ID_QUICKNET_XJ,
	  PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{ }
};

MODULE_DEVICE_TABLE(pci, ixj_pci_tbl);

/************************************************************************