diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-06-17 21:16:55 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-06-17 21:16:55 -0400 |
commit | 4b337c5f245b6587ba844ac7bb13c313a2912f7b (patch) | |
tree | 999c6a6580b76a083c8efb9dabff709d1c49fcd0 /drivers/net | |
parent | 492b057c426e4aa747484958e18e9da29003985d (diff) | |
parent | 3fe0344faf7fdcb158bd5c1a9aec960a8d70c8e8 (diff) |
Merge commit 'origin/master' into next
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/Kconfig | 9 | ||||
-rw-r--r-- | drivers/net/tun.c | 1 | ||||
-rw-r--r-- | drivers/net/wimax/i2400m/i2400m.h | 2 | ||||
-rw-r--r-- | drivers/net/wireless/ath/ath5k/Kconfig | 5 | ||||
-rw-r--r-- | drivers/net/wireless/libertas/README | 12 | ||||
-rw-r--r-- | drivers/net/wireless/libertas/if_spi.c | 8 | ||||
-rw-r--r-- | drivers/net/wireless/libertas/if_spi.h | 3 | ||||
-rw-r--r-- | drivers/net/wireless/libertas/if_usb.c | 8 | ||||
-rw-r--r-- | drivers/net/xen-netfront.c | 10 |
9 files changed, 29 insertions, 29 deletions
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index 01f282cd0989..892a9e4e275f 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig | |||
@@ -2206,7 +2206,7 @@ config SKGE_DEBUG | |||
2206 | depends on SKGE && DEBUG_FS | 2206 | depends on SKGE && DEBUG_FS |
2207 | help | 2207 | help |
2208 | This option adds the ability to dump driver state for debugging. | 2208 | This option adds the ability to dump driver state for debugging. |
2209 | The file debugfs/skge/ethX displays the state of the internal | 2209 | The file /sys/kernel/debug/skge/ethX displays the state of the internal |
2210 | transmit and receive rings. | 2210 | transmit and receive rings. |
2211 | 2211 | ||
2212 | If unsure, say N. | 2212 | If unsure, say N. |
@@ -2232,7 +2232,7 @@ config SKY2_DEBUG | |||
2232 | depends on SKY2 && DEBUG_FS | 2232 | depends on SKY2 && DEBUG_FS |
2233 | help | 2233 | help |
2234 | This option adds the ability to dump driver state for debugging. | 2234 | This option adds the ability to dump driver state for debugging. |
2235 | The file debugfs/sky2/ethX displays the state of the internal | 2235 | The file /sys/kernel/debug/sky2/ethX displays the state of the internal |
2236 | transmit and receive rings. | 2236 | transmit and receive rings. |
2237 | 2237 | ||
2238 | If unsure, say N. | 2238 | If unsure, say N. |
@@ -2272,8 +2272,9 @@ config BNX2 | |||
2272 | 2272 | ||
2273 | config CNIC | 2273 | config CNIC |
2274 | tristate "Broadcom CNIC support" | 2274 | tristate "Broadcom CNIC support" |
2275 | depends on BNX2 | 2275 | depends on PCI |
2276 | depends on UIO | 2276 | select BNX2 |
2277 | select UIO | ||
2277 | help | 2278 | help |
2278 | This driver supports offload features of Broadcom NetXtremeII | 2279 | This driver supports offload features of Broadcom NetXtremeII |
2279 | gigabit Ethernet cards. | 2280 | gigabit Ethernet cards. |
diff --git a/drivers/net/tun.c b/drivers/net/tun.c index 811d3517fce0..11a0ba47b677 100644 --- a/drivers/net/tun.c +++ b/drivers/net/tun.c | |||
@@ -1366,6 +1366,7 @@ static const struct file_operations tun_fops = { | |||
1366 | static struct miscdevice tun_miscdev = { | 1366 | static struct miscdevice tun_miscdev = { |
1367 | .minor = TUN_MINOR, | 1367 | .minor = TUN_MINOR, |
1368 | .name = "tun", | 1368 | .name = "tun", |
1369 | .devnode = "net/tun", | ||
1369 | .fops = &tun_fops, | 1370 | .fops = &tun_fops, |
1370 | }; | 1371 | }; |
1371 | 1372 | ||
diff --git a/drivers/net/wimax/i2400m/i2400m.h b/drivers/net/wimax/i2400m/i2400m.h index 1fe5da4cf0a0..60330f313f27 100644 --- a/drivers/net/wimax/i2400m/i2400m.h +++ b/drivers/net/wimax/i2400m/i2400m.h | |||
@@ -432,7 +432,7 @@ struct i2400m { | |||
432 | unsigned ready:1; /* all probing steps done */ | 432 | unsigned ready:1; /* all probing steps done */ |
433 | unsigned rx_reorder:1; /* RX reorder is enabled */ | 433 | unsigned rx_reorder:1; /* RX reorder is enabled */ |
434 | u8 trace_msg_from_user; /* echo rx msgs to 'trace' pipe */ | 434 | u8 trace_msg_from_user; /* echo rx msgs to 'trace' pipe */ |
435 | /* typed u8 so debugfs/u8 can tweak */ | 435 | /* typed u8 so /sys/kernel/debug/u8 can tweak */ |
436 | enum i2400m_system_state state; | 436 | enum i2400m_system_state state; |
437 | wait_queue_head_t state_wq; /* Woken up when on state updates */ | 437 | wait_queue_head_t state_wq; /* Woken up when on state updates */ |
438 | 438 | ||
diff --git a/drivers/net/wireless/ath/ath5k/Kconfig b/drivers/net/wireless/ath/ath5k/Kconfig index 509b6f94f73b..daf0c83527d8 100644 --- a/drivers/net/wireless/ath/ath5k/Kconfig +++ b/drivers/net/wireless/ath/ath5k/Kconfig | |||
@@ -28,11 +28,10 @@ config ATH5K_DEBUG | |||
28 | Say Y, if and you will get debug options for ath5k. | 28 | Say Y, if and you will get debug options for ath5k. |
29 | To use this, you need to mount debugfs: | 29 | To use this, you need to mount debugfs: |
30 | 30 | ||
31 | mkdir /debug/ | 31 | mount -t debugfs debug /sys/kernel/debug |
32 | mount -t debugfs debug /debug/ | ||
33 | 32 | ||
34 | You will get access to files under: | 33 | You will get access to files under: |
35 | /debug/ath5k/phy0/ | 34 | /sys/kernel/debug/ath5k/phy0/ |
36 | 35 | ||
37 | To enable debug, pass the debug level to the debug module | 36 | To enable debug, pass the debug level to the debug module |
38 | parameter. For example: | 37 | parameter. For example: |
diff --git a/drivers/net/wireless/libertas/README b/drivers/net/wireless/libertas/README index d860fc375752..ab6a2d518af0 100644 --- a/drivers/net/wireless/libertas/README +++ b/drivers/net/wireless/libertas/README | |||
@@ -72,7 +72,7 @@ rdrf | |||
72 | location that is to be read. This parameter must be specified in | 72 | location that is to be read. This parameter must be specified in |
73 | hexadecimal (its possible to preceed preceding the number with a "0x"). | 73 | hexadecimal (its possible to preceed preceding the number with a "0x"). |
74 | 74 | ||
75 | Path: /debugfs/libertas_wireless/ethX/registers/ | 75 | Path: /sys/kernel/debug/libertas_wireless/ethX/registers/ |
76 | 76 | ||
77 | Usage: | 77 | Usage: |
78 | echo "0xa123" > rdmac ; cat rdmac | 78 | echo "0xa123" > rdmac ; cat rdmac |
@@ -95,7 +95,7 @@ wrrf | |||
95 | sleepparams | 95 | sleepparams |
96 | This command is used to set the sleepclock configurations | 96 | This command is used to set the sleepclock configurations |
97 | 97 | ||
98 | Path: /debugfs/libertas_wireless/ethX/ | 98 | Path: /sys/kernel/debug/libertas_wireless/ethX/ |
99 | 99 | ||
100 | Usage: | 100 | Usage: |
101 | cat sleepparams: reads the current sleepclock configuration | 101 | cat sleepparams: reads the current sleepclock configuration |
@@ -115,7 +115,7 @@ subscribed_events | |||
115 | The subscribed_events directory contains the interface for the | 115 | The subscribed_events directory contains the interface for the |
116 | subscribed events API. | 116 | subscribed events API. |
117 | 117 | ||
118 | Path: /debugfs/libertas_wireless/ethX/subscribed_events/ | 118 | Path: /sys/kernel/debug/libertas_wireless/ethX/subscribed_events/ |
119 | 119 | ||
120 | Each event is represented by a filename. Each filename consists of the | 120 | Each event is represented by a filename. Each filename consists of the |
121 | following three fields: | 121 | following three fields: |
@@ -165,7 +165,7 @@ subscribed_events | |||
165 | extscan | 165 | extscan |
166 | This command is used to do a specific scan. | 166 | This command is used to do a specific scan. |
167 | 167 | ||
168 | Path: /debugfs/libertas_wireless/ethX/ | 168 | Path: /sys/kernel/debug/libertas_wireless/ethX/ |
169 | 169 | ||
170 | Usage: echo "SSID" > extscan | 170 | Usage: echo "SSID" > extscan |
171 | 171 | ||
@@ -179,7 +179,7 @@ getscantable | |||
179 | Display the current contents of the driver scan table (ie. get the | 179 | Display the current contents of the driver scan table (ie. get the |
180 | scan results). | 180 | scan results). |
181 | 181 | ||
182 | Path: /debugfs/libertas_wireless/ethX/ | 182 | Path: /sys/kernel/debug/libertas_wireless/ethX/ |
183 | 183 | ||
184 | Usage: | 184 | Usage: |
185 | cat getscantable | 185 | cat getscantable |
@@ -188,7 +188,7 @@ setuserscan | |||
188 | Initiate a customized scan and retrieve the results | 188 | Initiate a customized scan and retrieve the results |
189 | 189 | ||
190 | 190 | ||
191 | Path: /debugfs/libertas_wireless/ethX/ | 191 | Path: /sys/kernel/debug/libertas_wireless/ethX/ |
192 | 192 | ||
193 | Usage: | 193 | Usage: |
194 | echo "[ARGS]" > setuserscan | 194 | echo "[ARGS]" > setuserscan |
diff --git a/drivers/net/wireless/libertas/if_spi.c b/drivers/net/wireless/libertas/if_spi.c index f8c2898d82b0..06a46d7b3d6c 100644 --- a/drivers/net/wireless/libertas/if_spi.c +++ b/drivers/net/wireless/libertas/if_spi.c | |||
@@ -43,8 +43,8 @@ struct if_spi_card { | |||
43 | struct lbs_private *priv; | 43 | struct lbs_private *priv; |
44 | struct libertas_spi_platform_data *pdata; | 44 | struct libertas_spi_platform_data *pdata; |
45 | 45 | ||
46 | char helper_fw_name[FIRMWARE_NAME_MAX]; | 46 | char helper_fw_name[IF_SPI_FW_NAME_MAX]; |
47 | char main_fw_name[FIRMWARE_NAME_MAX]; | 47 | char main_fw_name[IF_SPI_FW_NAME_MAX]; |
48 | 48 | ||
49 | /* The card ID and card revision, as reported by the hardware. */ | 49 | /* The card ID and card revision, as reported by the hardware. */ |
50 | u16 card_id; | 50 | u16 card_id; |
@@ -1019,9 +1019,9 @@ static int if_spi_calculate_fw_names(u16 card_id, | |||
1019 | lbs_pr_err("Unsupported chip_id: 0x%02x\n", card_id); | 1019 | lbs_pr_err("Unsupported chip_id: 0x%02x\n", card_id); |
1020 | return -EAFNOSUPPORT; | 1020 | return -EAFNOSUPPORT; |
1021 | } | 1021 | } |
1022 | snprintf(helper_fw, FIRMWARE_NAME_MAX, "libertas/gspi%d_hlp.bin", | 1022 | snprintf(helper_fw, IF_SPI_FW_NAME_MAX, "libertas/gspi%d_hlp.bin", |
1023 | chip_id_to_device_name[i].name); | 1023 | chip_id_to_device_name[i].name); |
1024 | snprintf(main_fw, FIRMWARE_NAME_MAX, "libertas/gspi%d.bin", | 1024 | snprintf(main_fw, IF_SPI_FW_NAME_MAX, "libertas/gspi%d.bin", |
1025 | chip_id_to_device_name[i].name); | 1025 | chip_id_to_device_name[i].name); |
1026 | return 0; | 1026 | return 0; |
1027 | } | 1027 | } |
diff --git a/drivers/net/wireless/libertas/if_spi.h b/drivers/net/wireless/libertas/if_spi.h index 2103869cc5b0..f87eec410848 100644 --- a/drivers/net/wireless/libertas/if_spi.h +++ b/drivers/net/wireless/libertas/if_spi.h | |||
@@ -22,6 +22,9 @@ | |||
22 | #define IF_SPI_CMD_BUF_SIZE 2400 | 22 | #define IF_SPI_CMD_BUF_SIZE 2400 |
23 | 23 | ||
24 | /***************** Firmware *****************/ | 24 | /***************** Firmware *****************/ |
25 | |||
26 | #define IF_SPI_FW_NAME_MAX 30 | ||
27 | |||
25 | struct chip_ident { | 28 | struct chip_ident { |
26 | u16 chip_id; | 29 | u16 chip_id; |
27 | u16 name; | 30 | u16 name; |
diff --git a/drivers/net/wireless/libertas/if_usb.c b/drivers/net/wireless/libertas/if_usb.c index d649caebf08a..1844c5adf6e9 100644 --- a/drivers/net/wireless/libertas/if_usb.c +++ b/drivers/net/wireless/libertas/if_usb.c | |||
@@ -61,11 +61,9 @@ static ssize_t if_usb_firmware_set(struct device *dev, | |||
61 | { | 61 | { |
62 | struct lbs_private *priv = to_net_dev(dev)->ml_priv; | 62 | struct lbs_private *priv = to_net_dev(dev)->ml_priv; |
63 | struct if_usb_card *cardp = priv->card; | 63 | struct if_usb_card *cardp = priv->card; |
64 | char fwname[FIRMWARE_NAME_MAX]; | ||
65 | int ret; | 64 | int ret; |
66 | 65 | ||
67 | sscanf(buf, "%29s", fwname); /* FIRMWARE_NAME_MAX - 1 = 29 */ | 66 | ret = if_usb_prog_firmware(cardp, buf, BOOT_CMD_UPDATE_FW); |
68 | ret = if_usb_prog_firmware(cardp, fwname, BOOT_CMD_UPDATE_FW); | ||
69 | if (ret == 0) | 67 | if (ret == 0) |
70 | return count; | 68 | return count; |
71 | 69 | ||
@@ -88,11 +86,9 @@ static ssize_t if_usb_boot2_set(struct device *dev, | |||
88 | { | 86 | { |
89 | struct lbs_private *priv = to_net_dev(dev)->ml_priv; | 87 | struct lbs_private *priv = to_net_dev(dev)->ml_priv; |
90 | struct if_usb_card *cardp = priv->card; | 88 | struct if_usb_card *cardp = priv->card; |
91 | char fwname[FIRMWARE_NAME_MAX]; | ||
92 | int ret; | 89 | int ret; |
93 | 90 | ||
94 | sscanf(buf, "%29s", fwname); /* FIRMWARE_NAME_MAX - 1 = 29 */ | 91 | ret = if_usb_prog_firmware(cardp, buf, BOOT_CMD_UPDATE_BOOT2); |
95 | ret = if_usb_prog_firmware(cardp, fwname, BOOT_CMD_UPDATE_BOOT2); | ||
96 | if (ret == 0) | 92 | if (ret == 0) |
97 | return count; | 93 | return count; |
98 | 94 | ||
diff --git a/drivers/net/xen-netfront.c b/drivers/net/xen-netfront.c index f67325387902..8d88daeed0c6 100644 --- a/drivers/net/xen-netfront.c +++ b/drivers/net/xen-netfront.c | |||
@@ -1212,7 +1212,7 @@ static int __devinit netfront_probe(struct xenbus_device *dev, | |||
1212 | } | 1212 | } |
1213 | 1213 | ||
1214 | info = netdev_priv(netdev); | 1214 | info = netdev_priv(netdev); |
1215 | dev->dev.driver_data = info; | 1215 | dev_set_drvdata(&dev->dev, info); |
1216 | 1216 | ||
1217 | err = register_netdev(info->netdev); | 1217 | err = register_netdev(info->netdev); |
1218 | if (err) { | 1218 | if (err) { |
@@ -1233,7 +1233,7 @@ static int __devinit netfront_probe(struct xenbus_device *dev, | |||
1233 | 1233 | ||
1234 | fail: | 1234 | fail: |
1235 | free_netdev(netdev); | 1235 | free_netdev(netdev); |
1236 | dev->dev.driver_data = NULL; | 1236 | dev_set_drvdata(&dev->dev, NULL); |
1237 | return err; | 1237 | return err; |
1238 | } | 1238 | } |
1239 | 1239 | ||
@@ -1275,7 +1275,7 @@ static void xennet_disconnect_backend(struct netfront_info *info) | |||
1275 | */ | 1275 | */ |
1276 | static int netfront_resume(struct xenbus_device *dev) | 1276 | static int netfront_resume(struct xenbus_device *dev) |
1277 | { | 1277 | { |
1278 | struct netfront_info *info = dev->dev.driver_data; | 1278 | struct netfront_info *info = dev_get_drvdata(&dev->dev); |
1279 | 1279 | ||
1280 | dev_dbg(&dev->dev, "%s\n", dev->nodename); | 1280 | dev_dbg(&dev->dev, "%s\n", dev->nodename); |
1281 | 1281 | ||
@@ -1600,7 +1600,7 @@ static int xennet_connect(struct net_device *dev) | |||
1600 | static void backend_changed(struct xenbus_device *dev, | 1600 | static void backend_changed(struct xenbus_device *dev, |
1601 | enum xenbus_state backend_state) | 1601 | enum xenbus_state backend_state) |
1602 | { | 1602 | { |
1603 | struct netfront_info *np = dev->dev.driver_data; | 1603 | struct netfront_info *np = dev_get_drvdata(&dev->dev); |
1604 | struct net_device *netdev = np->netdev; | 1604 | struct net_device *netdev = np->netdev; |
1605 | 1605 | ||
1606 | dev_dbg(&dev->dev, "%s\n", xenbus_strstate(backend_state)); | 1606 | dev_dbg(&dev->dev, "%s\n", xenbus_strstate(backend_state)); |
@@ -1774,7 +1774,7 @@ static struct xenbus_device_id netfront_ids[] = { | |||
1774 | 1774 | ||
1775 | static int __devexit xennet_remove(struct xenbus_device *dev) | 1775 | static int __devexit xennet_remove(struct xenbus_device *dev) |
1776 | { | 1776 | { |
1777 | struct netfront_info *info = dev->dev.driver_data; | 1777 | struct netfront_info *info = dev_get_drvdata(&dev->dev); |
1778 | 1778 | ||
1779 | dev_dbg(&dev->dev, "%s\n", dev->nodename); | 1779 | dev_dbg(&dev->dev, "%s\n", dev->nodename); |
1780 | 1780 | ||