diff options
author | Prarit Bhargava <prarit@redhat.com> | 2011-05-24 22:12:23 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-05-25 17:55:32 -0400 |
commit | 367bbf2aa1654c12ab5d6dbf4428b043b425be29 (patch) | |
tree | 73d457fba7437bef4dc1c376225f410b7650e66a /drivers/isdn | |
parent | d10358de8d70aaeb965a974d56e9b72f6c6dbb3a (diff) |
isdn: netjet - blacklist Digium TDM400P
[2nd try ... 1st attempt didn't make it to netdev mailing list]
A quick google search reveals that people with this card are blacklisting it
in the initramfs and in the module blacklist based on a statement that it
is unsupported. Since the older Digium is also unsupported I'm pretty
confident that this newer card is also not supported.
lspci -xxx -vv shows
04:07.0 Communication controller: Tiger Jet Network Inc. Tiger3XX Modem/ISDN interface
Subsystem: Device b100:0003
P.
----8<----
The Asterisk Voice Card, DIGIUM TDM400P is unsupported by the netjet driver.
Blacklist it like the Digium X100P/X101P card.
Signed-off-by: Prarit Bhargava <prarit@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/isdn')
-rw-r--r-- | drivers/isdn/hardware/mISDN/netjet.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/isdn/hardware/mISDN/netjet.c b/drivers/isdn/hardware/mISDN/netjet.c index 54ae71a907f9..db25b6b2ae39 100644 --- a/drivers/isdn/hardware/mISDN/netjet.c +++ b/drivers/isdn/hardware/mISDN/netjet.c | |||
@@ -1072,6 +1072,12 @@ nj_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
1072 | return -ENODEV; | 1072 | return -ENODEV; |
1073 | } | 1073 | } |
1074 | 1074 | ||
1075 | if (pdev->subsystem_vendor == 0xb100 && | ||
1076 | pdev->subsystem_device == 0x0003 ) { | ||
1077 | pr_notice("Netjet: Digium TDM400P not handled yet\n"); | ||
1078 | return -ENODEV; | ||
1079 | } | ||
1080 | |||
1075 | card = kzalloc(sizeof(struct tiger_hw), GFP_ATOMIC); | 1081 | card = kzalloc(sizeof(struct tiger_hw), GFP_ATOMIC); |
1076 | if (!card) { | 1082 | if (!card) { |
1077 | pr_info("No kmem for Netjet\n"); | 1083 | pr_info("No kmem for Netjet\n"); |