Commit 06bc6969 authored by Roland Vossen's avatar Roland Vossen Committed by Greg Kroah-Hartman

staging: brcm80211: simplified internal ioctl function once more

Code cleanup. Merged two functions.
Reviewed-by: default avatarArend van Spriel <arend@broadcom.com>
Reviewed-by: default avatarFranky Lin <frankyl@broadcom.com>
Signed-off-by: default avatarFranky Lin <frankyl@broadcom.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 4fa819be
...@@ -724,8 +724,7 @@ extern struct brcmf_pub *brcmf_attach(struct brcmf_bus *bus, ...@@ -724,8 +724,7 @@ extern struct brcmf_pub *brcmf_attach(struct brcmf_bus *bus,
extern int brcmf_net_attach(struct brcmf_pub *drvr, int idx); extern int brcmf_net_attach(struct brcmf_pub *drvr, int idx);
extern int brcmf_netdev_wait_pend8021x(struct net_device *ndev); extern int brcmf_netdev_wait_pend8021x(struct net_device *ndev);
extern int brcmf_netdev_ioctl_priv(struct net_device *ndev, extern s32 brcmf_dev_ioctl(struct net_device *dev, u32 cmd, void *arg, u32 len);
struct brcmf_ioctl *ioc);
/* Indication from bus module regarding removal/absence of dongle */ /* Indication from bus module regarding removal/absence of dongle */
extern void brcmf_detach(struct brcmf_pub *drvr); extern void brcmf_detach(struct brcmf_pub *drvr);
......
...@@ -849,30 +849,36 @@ static int brcmf_netdev_ioctl_entry(struct net_device *ndev, struct ifreq *ifr, ...@@ -849,30 +849,36 @@ static int brcmf_netdev_ioctl_entry(struct net_device *ndev, struct ifreq *ifr,
return -EOPNOTSUPP; return -EOPNOTSUPP;
} }
/* called only from within this driver */ /* called only from within this driver. Sends an ioctl to the dongle. */
int brcmf_netdev_ioctl_priv(struct net_device *ndev, struct brcmf_ioctl *ioc) s32 brcmf_dev_ioctl(struct net_device *ndev, u32 cmd, void *arg, u32 len)
{ {
int bcmerror = 0; struct brcmf_ioctl ioc;
s32 err = 0;
int buflen = 0; int buflen = 0;
bool is_set_key_cmd; bool is_set_key_cmd;
struct brcmf_info *drvr_priv = *(struct brcmf_info **) struct brcmf_info *drvr_priv = *(struct brcmf_info **)
netdev_priv(ndev); netdev_priv(ndev);
int ifidx; int ifidx;
memset(&ioc, 0, sizeof(ioc));
ioc.cmd = cmd;
ioc.buf = arg;
ioc.len = len;
ifidx = brcmf_net2idx(drvr_priv, ndev); ifidx = brcmf_net2idx(drvr_priv, ndev);
if (ioc->buf != NULL) if (ioc.buf != NULL)
buflen = min_t(uint, ioc->len, BRCMF_IOCTL_MAXLEN); buflen = min_t(uint, ioc.len, BRCMF_IOCTL_MAXLEN);
/* send to dongle (must be up, and wl) */ /* send to dongle (must be up, and wl) */
if ((drvr_priv->pub.busstate != BRCMF_BUS_DATA)) { if ((drvr_priv->pub.busstate != BRCMF_BUS_DATA)) {
brcmf_dbg(ERROR, "DONGLE_DOWN\n"); brcmf_dbg(ERROR, "DONGLE_DOWN\n");
bcmerror = -EIO; err = -EIO;
goto done; goto done;
} }
if (!drvr_priv->pub.iswl) { if (!drvr_priv->pub.iswl) {
bcmerror = -EIO; err = -EIO;
goto done; goto done;
} }
...@@ -880,21 +886,21 @@ int brcmf_netdev_ioctl_priv(struct net_device *ndev, struct brcmf_ioctl *ioc) ...@@ -880,21 +886,21 @@ int brcmf_netdev_ioctl_priv(struct net_device *ndev, struct brcmf_ioctl *ioc)
* Intercept BRCMF_C_SET_KEY IOCTL - serialize M4 send and * Intercept BRCMF_C_SET_KEY IOCTL - serialize M4 send and
* set key IOCTL to prevent M4 encryption. * set key IOCTL to prevent M4 encryption.
*/ */
is_set_key_cmd = ((ioc->cmd == BRCMF_C_SET_KEY) || is_set_key_cmd = ((ioc.cmd == BRCMF_C_SET_KEY) ||
((ioc->cmd == BRCMF_C_SET_VAR) && ((ioc.cmd == BRCMF_C_SET_VAR) &&
!(strncmp("wsec_key", ioc->buf, 9))) || !(strncmp("wsec_key", ioc.buf, 9))) ||
((ioc->cmd == BRCMF_C_SET_VAR) && ((ioc.cmd == BRCMF_C_SET_VAR) &&
!(strncmp("bsscfg:wsec_key", ioc->buf, 15)))); !(strncmp("bsscfg:wsec_key", ioc.buf, 15))));
if (is_set_key_cmd) if (is_set_key_cmd)
brcmf_netdev_wait_pend8021x(ndev); brcmf_netdev_wait_pend8021x(ndev);
bcmerror = brcmf_proto_ioctl(&drvr_priv->pub, ifidx, ioc, buflen); err = brcmf_proto_ioctl(&drvr_priv->pub, ifidx, &ioc, buflen);
done: done:
if (bcmerror > 0) if (err > 0)
bcmerror = 0; err = 0;
return bcmerror; return err;
} }
static int brcmf_netdev_stop(struct net_device *ndev) static int brcmf_netdev_stop(struct net_device *ndev)
......
...@@ -249,22 +249,6 @@ static const u32 __wl_cipher_suites[] = { ...@@ -249,22 +249,6 @@ static const u32 __wl_cipher_suites[] = {
WLAN_CIPHER_SUITE_AES_CMAC, WLAN_CIPHER_SUITE_AES_CMAC,
}; };
static s32
brcmf_dev_ioctl(struct net_device *dev, u32 cmd, void *arg, u32 len)
{
struct brcmf_ioctl ioc;
s32 err = 0;
memset(&ioc, 0, sizeof(ioc));
ioc.cmd = cmd;
ioc.buf = arg;
ioc.len = len;
err = brcmf_netdev_ioctl_priv(dev, &ioc);
return err;
}
/* function for reading/writing a single u32 from/to the dongle */ /* function for reading/writing a single u32 from/to the dongle */
static int static int
brcmf_dev_ioctl_u32(struct net_device *ndev, u32 cmd, u32 *par) brcmf_dev_ioctl_u32(struct net_device *ndev, u32 cmd, u32 *par)
......
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