diff options
author | Joe Perches <joe@perches.com> | 2015-05-05 20:06:03 +0300 |
---|---|---|
committer | Michael Grzeschik <m.grzeschik@pengutronix.de> | 2015-09-23 09:44:25 +0300 |
commit | 26c6d281688e8bb8154fa78c60e551d024f5d0b8 (patch) | |
tree | b61afb2d9e2cb016273145745453076e45a2706c /drivers/net/arcnet/com20020-pci.c | |
parent | d6d7d3ed56e3bfe7fd34108dbe23f0610e3d8621 (diff) | |
download | linux-26c6d281688e8bb8154fa78c60e551d024f5d0b8.tar.xz |
arcnet: Move files out of include/linux
These #include files don't need to be in the include/linux directory
as they can be local to drivers/net/arcnet/
Move them and update the #include statements.
Update the MAINTAINERS file pattern by deleting arcdevice from the
NETWORKING block as arcnet is currently unmaintained.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Michael Grzeschik <m.grzeschik@pengutronix.de>
Diffstat (limited to 'drivers/net/arcnet/com20020-pci.c')
-rw-r--r-- | drivers/net/arcnet/com20020-pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/arcnet/com20020-pci.c b/drivers/net/arcnet/com20020-pci.c index a28887dfcc9e..1a75a6982031 100644 --- a/drivers/net/arcnet/com20020-pci.c +++ b/drivers/net/arcnet/com20020-pci.c @@ -39,12 +39,12 @@ #include <linux/init.h> #include <linux/interrupt.h> #include <linux/pci.h> -#include <linux/arcdevice.h> -#include <linux/com20020.h> #include <linux/list.h> - #include <linux/io.h> +#include "arcdevice.h" +#include "com20020.h" + /* Module parameters */ static int node; |