Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
72805f2a
Commit
72805f2a
authored
Jun 16, 2003
by
David T. Hollis
Committed by
Greg Kroah-Hartman
Jun 16, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] USB: AX8817X Driver for 2.5
parent
c29296ae
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1365 additions
and
0 deletions
+1365
-0
drivers/usb/Makefile.lib
drivers/usb/Makefile.lib
+1
-0
drivers/usb/net/Kconfig
drivers/usb/net/Kconfig
+21
-0
drivers/usb/net/Makefile
drivers/usb/net/Makefile
+1
-0
drivers/usb/net/Makefile.mii
drivers/usb/net/Makefile.mii
+1
-0
drivers/usb/net/ax8817x.c
drivers/usb/net/ax8817x.c
+1341
-0
No files found.
drivers/usb/Makefile.lib
View file @
72805f2a
obj-$(CONFIG_USB_AX8817X)
+=
crc32.o
obj-$(CONFIG_USB_CATC)
+=
crc32.o
obj-$(CONFIG_USB_CATC)
+=
crc32.o
obj-$(CONFIG_USB_SPEEDTOUCH)
+=
crc32.o
obj-$(CONFIG_USB_SPEEDTOUCH)
+=
crc32.o
obj-$(CONFIG_USB_USBNET)
+=
crc32.o
obj-$(CONFIG_USB_USBNET)
+=
crc32.o
drivers/usb/net/Kconfig
View file @
72805f2a
...
@@ -7,6 +7,27 @@ comment "USB Network adaptors"
...
@@ -7,6 +7,27 @@ comment "USB Network adaptors"
comment "Networking support is needed for USB Networking device support"
comment "Networking support is needed for USB Networking device support"
depends on USB && !NET
depends on USB && !NET
config USB_AX8817X
tristate "USB ASIX AX8817X Ethernet device support (EXPERIMENTAL)"
depends on USB && NET && EXPERIMENTAL
---help---
Say Y if you want to use one of the following 10/100Mps USB
Ethernet devices based on the ASIX AX88172 chip. Supported
devices are:
ASIX AX88172
D-Link DUB-E100
Hawking UF200
Netgear FA120
This driver makes the adapter appear as a normal Ethernet interface,
typically on eth0, if it is the only ethernet device, or perhaps on
eth1, if you have a PCI or ISA ethernet card installed.
This code is also available as a module ( = code which can be
inserted in and removed from the running kernel whenever you want).
The module will be called ax8817x.o. If you want to compile it as a
module, say M here and read <file:Documentation/modules.txt>.
config USB_CATC
config USB_CATC
tristate "USB CATC NetMate-based Ethernet device support (EXPERIMENTAL)"
tristate "USB CATC NetMate-based Ethernet device support (EXPERIMENTAL)"
depends on USB && NET && EXPERIMENTAL
depends on USB && NET && EXPERIMENTAL
...
...
drivers/usb/net/Makefile
View file @
72805f2a
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
# Makefile for USB Network drivers
# Makefile for USB Network drivers
#
#
obj-$(CONFIG_USB_AX8817X)
+=
ax8817x.o
obj-$(CONFIG_USB_CATC)
+=
catc.o
obj-$(CONFIG_USB_CATC)
+=
catc.o
obj-$(CONFIG_USB_KAWETH)
+=
kaweth.o
obj-$(CONFIG_USB_KAWETH)
+=
kaweth.o
obj-$(CONFIG_USB_PEGASUS)
+=
pegasus.o
obj-$(CONFIG_USB_PEGASUS)
+=
pegasus.o
...
...
drivers/usb/net/Makefile.mii
View file @
72805f2a
...
@@ -2,4 +2,5 @@
...
@@ -2,4 +2,5 @@
# Makefile for USB Network drivers which require generic MII code.
# Makefile for USB Network drivers which require generic MII code.
#
#
obj-$(CONFIG_USB_AX8817X)
+=
mii.o
obj-$(CONFIG_USB_PEGASUS)
+=
mii.o
obj-$(CONFIG_USB_PEGASUS)
+=
mii.o
drivers/usb/net/ax8817x.c
0 → 100644
View file @
72805f2a
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment