[PATCH] net: Kill some unneeded allocation return value casts in libertas
[linux-2.6/btrfs-unstable.git] / drivers / net / wireless / libertas / ethtool.c
blobd793d843f7d5a95476a08662571cfa3666d95d18
1 #include <linux/netdevice.h>
2 #include <linux/ethtool.h>
3 #include <linux/delay.h>
5 #include "host.h"
6 #include "decl.h"
7 #include "defs.h"
8 #include "dev.h"
9 #include "join.h"
10 #include "wext.h"
11 static const char * mesh_stat_strings[]= {
12 "drop_duplicate_bcast",
13 "drop_ttl_zero",
14 "drop_no_fwd_route",
15 "drop_no_buffers",
16 "fwded_unicast_cnt",
17 "fwded_bcast_cnt",
18 "drop_blind_table",
19 "tx_failed_cnt"
22 static void libertas_ethtool_get_drvinfo(struct net_device *dev,
23 struct ethtool_drvinfo *info)
25 wlan_private *priv = (wlan_private *) dev->priv;
26 char fwver[32];
28 libertas_get_fwversion(priv->adapter, fwver, sizeof(fwver) - 1);
30 strcpy(info->driver, "libertas");
31 strcpy(info->version, libertas_driver_version);
32 strcpy(info->fw_version, fwver);
35 /* All 8388 parts have 16KiB EEPROM size at the time of writing.
36 * In case that changes this needs fixing.
38 #define LIBERTAS_EEPROM_LEN 16384
40 static int libertas_ethtool_get_eeprom_len(struct net_device *dev)
42 return LIBERTAS_EEPROM_LEN;
45 static int libertas_ethtool_get_eeprom(struct net_device *dev,
46 struct ethtool_eeprom *eeprom, u8 * bytes)
48 wlan_private *priv = (wlan_private *) dev->priv;
49 wlan_adapter *adapter = priv->adapter;
50 struct wlan_ioctl_regrdwr regctrl;
51 char *ptr;
52 int ret;
54 regctrl.action = 0;
55 regctrl.offset = eeprom->offset;
56 regctrl.NOB = eeprom->len;
58 if (eeprom->offset + eeprom->len > LIBERTAS_EEPROM_LEN)
59 return -EINVAL;
61 // mutex_lock(&priv->mutex);
63 adapter->prdeeprom = kmalloc(eeprom->len+sizeof(regctrl), GFP_KERNEL);
64 if (!adapter->prdeeprom)
65 return -ENOMEM;
66 memcpy(adapter->prdeeprom, &regctrl, sizeof(regctrl));
68 /* +14 is for action, offset, and NOB in
69 * response */
70 lbs_deb_ethtool("action:%d offset: %x NOB: %02x\n",
71 regctrl.action, regctrl.offset, regctrl.NOB);
73 ret = libertas_prepare_and_send_command(priv,
74 CMD_802_11_EEPROM_ACCESS,
75 regctrl.action,
76 CMD_OPTION_WAITFORRSP, 0,
77 &regctrl);
79 if (ret) {
80 if (adapter->prdeeprom)
81 kfree(adapter->prdeeprom);
82 goto done;
85 mdelay(10);
87 ptr = (char *)adapter->prdeeprom;
89 /* skip the command header, but include the "value" u32 variable */
90 ptr = ptr + sizeof(struct wlan_ioctl_regrdwr) - 4;
93 * Return the result back to the user
95 memcpy(bytes, ptr, eeprom->len);
97 if (adapter->prdeeprom)
98 kfree(adapter->prdeeprom);
99 // mutex_unlock(&priv->mutex);
101 ret = 0;
103 done:
104 lbs_deb_enter_args(LBS_DEB_ETHTOOL, "ret %d", ret);
105 return ret;
108 static void libertas_ethtool_get_stats(struct net_device * dev,
109 struct ethtool_stats * stats, u64 * data)
111 wlan_private *priv = dev->priv;
113 lbs_deb_enter(LBS_DEB_ETHTOOL);
115 stats->cmd = ETHTOOL_GSTATS;
116 BUG_ON(stats->n_stats != MESH_STATS_NUM);
118 data[0] = priv->mstats.fwd_drop_rbt;
119 data[1] = priv->mstats.fwd_drop_ttl;
120 data[2] = priv->mstats.fwd_drop_noroute;
121 data[3] = priv->mstats.fwd_drop_nobuf;
122 data[4] = priv->mstats.fwd_unicast_cnt;
123 data[5] = priv->mstats.fwd_bcast_cnt;
124 data[6] = priv->mstats.drop_blind;
125 data[7] = priv->mstats.tx_failed_cnt;
127 lbs_deb_enter(LBS_DEB_ETHTOOL);
130 static int libertas_ethtool_get_stats_count(struct net_device * dev)
132 int ret;
133 wlan_private *priv = dev->priv;
134 struct cmd_ds_mesh_access mesh_access;
136 lbs_deb_enter(LBS_DEB_ETHTOOL);
138 /* Get Mesh Statistics */
139 ret = libertas_prepare_and_send_command(priv,
140 CMD_MESH_ACCESS, CMD_ACT_MESH_GET_STATS,
141 CMD_OPTION_WAITFORRSP, 0, &mesh_access);
143 if (ret) {
144 ret = 0;
145 goto done;
148 priv->mstats.fwd_drop_rbt = le32_to_cpu(mesh_access.data[0]);
149 priv->mstats.fwd_drop_ttl = le32_to_cpu(mesh_access.data[1]);
150 priv->mstats.fwd_drop_noroute = le32_to_cpu(mesh_access.data[2]);
151 priv->mstats.fwd_drop_nobuf = le32_to_cpu(mesh_access.data[3]);
152 priv->mstats.fwd_unicast_cnt = le32_to_cpu(mesh_access.data[4]);
153 priv->mstats.fwd_bcast_cnt = le32_to_cpu(mesh_access.data[5]);
154 priv->mstats.drop_blind = le32_to_cpu(mesh_access.data[6]);
155 priv->mstats.tx_failed_cnt = le32_to_cpu(mesh_access.data[7]);
157 ret = MESH_STATS_NUM;
159 done:
160 lbs_deb_enter_args(LBS_DEB_ETHTOOL, "ret %d", ret);
161 return ret;
164 static void libertas_ethtool_get_strings (struct net_device * dev,
165 u32 stringset,
166 u8 * s)
168 int i;
170 lbs_deb_enter(LBS_DEB_ETHTOOL);
172 switch (stringset) {
173 case ETH_SS_STATS:
174 for (i=0; i < MESH_STATS_NUM; i++) {
175 memcpy(s + i * ETH_GSTRING_LEN,
176 mesh_stat_strings[i],
177 ETH_GSTRING_LEN);
179 break;
181 lbs_deb_enter(LBS_DEB_ETHTOOL);
184 struct ethtool_ops libertas_ethtool_ops = {
185 .get_drvinfo = libertas_ethtool_get_drvinfo,
186 .get_eeprom = libertas_ethtool_get_eeprom,
187 .get_eeprom_len = libertas_ethtool_get_eeprom_len,
188 .get_stats_count = libertas_ethtool_get_stats_count,
189 .get_ethtool_stats = libertas_ethtool_get_stats,
190 .get_strings = libertas_ethtool_get_strings,