Commit 00b309f5 authored by Jean Tourrilhes's avatar Jean Tourrilhes Committed by Jeff Garzik

[PATCH] wl3501_cs : WE-17 support

	wl3501_cs won't compile with WE-19. This patches fixes it.
Signed-off-by: default avatarJean Tourrilhes <jt@hpl.hp.com>
Acked-by: default avatarArnaldo Carvalho de Melo <acme@conectiva.com.br>
Signed-off-by: default avatarJeff Garzik <jgarzik@pobox.com>
parent 72f98d38
...@@ -609,6 +609,7 @@ struct wl3501_card { ...@@ -609,6 +609,7 @@ struct wl3501_card {
struct net_device_stats stats; struct net_device_stats stats;
struct iw_statistics wstats; struct iw_statistics wstats;
struct iw_spy_data spy_data; struct iw_spy_data spy_data;
struct iw_public_data wireless_data;
struct dev_node_t node; struct dev_node_t node;
}; };
#endif #endif
...@@ -1944,7 +1944,7 @@ static const iw_handler wl3501_handler[] = { ...@@ -1944,7 +1944,7 @@ static const iw_handler wl3501_handler[] = {
static const struct iw_handler_def wl3501_handler_def = { static const struct iw_handler_def wl3501_handler_def = {
.num_standard = sizeof(wl3501_handler) / sizeof(iw_handler), .num_standard = sizeof(wl3501_handler) / sizeof(iw_handler),
.standard = (iw_handler *)wl3501_handler, .standard = (iw_handler *)wl3501_handler,
.spy_offset = offsetof(struct wl3501_card, spy_data), .get_wireless_stats = wl3501_get_wireless_stats,
}; };
/** /**
...@@ -1961,6 +1961,7 @@ static dev_link_t *wl3501_attach(void) ...@@ -1961,6 +1961,7 @@ static dev_link_t *wl3501_attach(void)
client_reg_t client_reg; client_reg_t client_reg;
dev_link_t *link; dev_link_t *link;
struct net_device *dev; struct net_device *dev;
struct wl3501_card *this;
int ret; int ret;
/* Initialize the dev_link_t structure */ /* Initialize the dev_link_t structure */
...@@ -1995,7 +1996,9 @@ static dev_link_t *wl3501_attach(void) ...@@ -1995,7 +1996,9 @@ static dev_link_t *wl3501_attach(void)
dev->tx_timeout = wl3501_tx_timeout; dev->tx_timeout = wl3501_tx_timeout;
dev->watchdog_timeo = 5 * HZ; dev->watchdog_timeo = 5 * HZ;
dev->get_stats = wl3501_get_stats; dev->get_stats = wl3501_get_stats;
dev->get_wireless_stats = wl3501_get_wireless_stats; this = dev->priv;
this->wireless_data.spy_data = &this->spy_data;
dev->wireless_data = &this->wireless_data;
dev->wireless_handlers = (struct iw_handler_def *)&wl3501_handler_def; dev->wireless_handlers = (struct iw_handler_def *)&wl3501_handler_def;
SET_ETHTOOL_OPS(dev, &ops); SET_ETHTOOL_OPS(dev, &ops);
netif_stop_queue(dev); netif_stop_queue(dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment