diff options
author | David Kilroy <kilroyd@googlemail.com> | 2010-05-01 17:05:39 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-05-03 22:53:06 +0400 |
commit | 593ef09c9e70c92c0d76c67a1c03a5d44d3aec82 (patch) | |
tree | f15d00aa6ce35d3da828003b209cd4077cbadcec /drivers/net/wireless/orinoco/airport.c | |
parent | b42f2074dedef559ecf72dce61a6501f9f9b273a (diff) | |
download | linux-593ef09c9e70c92c0d76c67a1c03a5d44d3aec82.tar.xz |
orinoco: allow driver to specify netdev_ops
Allow the main drivers to specify a custom version of the net_device_ops
structure. This is required by orinoco_usb to supply a separate transmit
function.
Export existing net_device_ops callbacks so that the drivers can reuse
some of the existing code.
Signed-off-by: David Kilroy <kilroyd@googlemail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/orinoco/airport.c')
-rw-r--r-- | drivers/net/wireless/orinoco/airport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/orinoco/airport.c b/drivers/net/wireless/orinoco/airport.c index ea23c4fdbf62..7dac5adb6c1c 100644 --- a/drivers/net/wireless/orinoco/airport.c +++ b/drivers/net/wireless/orinoco/airport.c @@ -210,7 +210,7 @@ airport_attach(struct macio_dev *mdev, const struct of_device_id *match) } /* Register an interface with the stack */ - if (orinoco_if_add(priv, phys_addr, card->irq) != 0) { + if (orinoco_if_add(priv, phys_addr, card->irq, NULL) != 0) { printk(KERN_ERR PFX "orinoco_if_add() failed\n"); goto failed; } |