diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2019-09-13 16:28:17 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-09-16 09:14:41 +0200 |
commit | 28c9eb9042a954d4e9fbec91484bddce280f1beb (patch) | |
tree | 4fccb85164bd414e600b0d46ccaa722e898afd6e /drivers/net/wan/Makefile | |
parent | 1f249677cf4c881d7562485c917bfb2e7f43f371 (diff) |
net/wan: dscc4: remove broken dscc4 driver
Using static analysis, I discovered that the "dpriv->pci_priv->pdev"
pointer is always NULL. This pointer was supposed to be initialized
during probe and is essential for the driver to work. It would be easy
to add a "ppriv->pdev = pdev;" to dscc4_found1() but this driver has
been broken since before we started using git and no one has complained
so probably we should just remove it.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Francois Romieu <romieu@fr.zoreil.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wan/Makefile')
-rw-r--r-- | drivers/net/wan/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/wan/Makefile b/drivers/net/wan/Makefile index 9532e69fda87..701f5d2fe3b6 100644 --- a/drivers/net/wan/Makefile +++ b/drivers/net/wan/Makefile @@ -18,7 +18,6 @@ obj-$(CONFIG_HOSTESS_SV11) += z85230.o hostess_sv11.o obj-$(CONFIG_SEALEVEL_4021) += z85230.o sealevel.o obj-$(CONFIG_COSA) += cosa.o obj-$(CONFIG_FARSYNC) += farsync.o -obj-$(CONFIG_DSCC4) += dscc4.o obj-$(CONFIG_X25_ASY) += x25_asy.o obj-$(CONFIG_LANMEDIA) += lmc/ |