Skip to content

Commit 02c1889

Browse files
Masakazu MokunoJeff Garzik
authored andcommitted
ps3: gigabit ethernet driver for PS3, take3
Hi, This is the third submission of the network driver for PS3. The differences from the previous one are: - renamed source file names so that their prefix can match with the module name - added [email protected] line for MAINTAINER file - changed some in copyright comments If there are no more comments, please apply for 2.6.23. Thank you -- Subject: PS3: Ethernet driver From: Masakazu Mokuno <[email protected]> Add Gigabit Ethernet support for the PS3 game console. The module will be called ps3_gelic. CC: Geoff Levand <[email protected]> Signed-off-by: Masakazu Mokuno <[email protected]> Signed-off-by: Jeff Garzik <[email protected]>
1 parent def47c5 commit 02c1889

File tree

5 files changed

+1834
-0
lines changed

5 files changed

+1834
-0
lines changed

MAINTAINERS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2930,6 +2930,13 @@ M: [email protected]
29302930
29312931
S: Maintained
29322932

2933+
PS3 NETWORK SUPPORT
2934+
P: Masakazu Mokuno
2935+
2936+
2937+
2938+
S: Supported
2939+
29332940
PS3 PLATFORM SUPPORT
29342941
P: Geoff Levand
29352942

drivers/net/Kconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2200,6 +2200,16 @@ config TSI108_ETH
22002200
To compile this driver as a module, choose M here: the module
22012201
will be called tsi108_eth.
22022202

2203+
config GELIC_NET
2204+
tristate "PS3 Gigabit Ethernet driver"
2205+
depends on PPC_PS3
2206+
help
2207+
This driver supports the network device on the PS3 game
2208+
console. This driver has built-in support for Ethernet.
2209+
2210+
To compile this driver as a module, choose M here: the
2211+
module will be called ps3_gelic.
2212+
22032213
config GIANFAR
22042214
tristate "Gianfar Ethernet"
22052215
depends on 85xx || 83xx || PPC_86xx

drivers/net/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ obj-$(CONFIG_TIGON3) += tg3.o
6060
obj-$(CONFIG_BNX2) += bnx2.o
6161
spidernet-y += spider_net.o spider_net_ethtool.o
6262
obj-$(CONFIG_SPIDER_NET) += spidernet.o sungem_phy.o
63+
obj-$(CONFIG_GELIC_NET) += ps3_gelic.o
64+
ps3_gelic-objs += ps3_gelic_net.o
6365
obj-$(CONFIG_TC35815) += tc35815.o
6466
obj-$(CONFIG_SKGE) += skge.o
6567
obj-$(CONFIG_SKY2) += sky2.o

0 commit comments

Comments
 (0)