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
aa6af1e1
Commit
aa6af1e1
authored
Jun 10, 2004
by
Russell King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] add ARM smc91x driver
parent
d66f55e6
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3018 additions
and
0 deletions
+3018
-0
drivers/net/arm/Kconfig
drivers/net/arm/Kconfig
+17
-0
drivers/net/arm/Makefile
drivers/net/arm/Makefile
+1
-0
drivers/net/arm/smc91x.c
drivers/net/arm/smc91x.c
+2171
-0
drivers/net/arm/smc91x.h
drivers/net/arm/smc91x.h
+829
-0
No files found.
drivers/net/arm/Kconfig
View file @
aa6af1e1
...
...
@@ -45,3 +45,20 @@ config ARM_ETHER00
number (MTD support is required for this). Otherwise you will
need to set a suitable hw address using ifconfig.
config SMC91X
tristate "SMC 91C9x/91C1xxx support"
select CRC32
select MII
depends on ARM
help
This is a driver for SMC's 91x series of Ethernet chipsets,
including the SMC91C94 and the SMC91C111. Say Y if you want it
compiled into the kernel, and read the file
<file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO,
available from <http://www.linuxdoc.org/docs.html#howto>.
This driver 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 smc91x. If you want to compile it as a
module, say M here and read <file:Documentation/modules.txt> as well
as <file:Documentation/networking/net-modules.txt>.
drivers/net/arm/Makefile
View file @
aa6af1e1
...
...
@@ -8,3 +8,4 @@ obj-$(CONFIG_ARM_ETHER00) += ether00.o
obj-$(CONFIG_ARM_ETHERH)
+=
etherh.o
obj-$(CONFIG_ARM_ETHER3)
+=
ether3.o
obj-$(CONFIG_ARM_ETHER1)
+=
ether1.o
obj-$(CONFIG_SMC91X)
+=
smc91x.o
drivers/net/arm/smc91x.c
0 → 100644
View file @
aa6af1e1
This diff is collapsed.
Click to expand it.
drivers/net/arm/smc91x.h
0 → 100644
View file @
aa6af1e1
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