Commit 02a0fbe4 authored by Rafał Miłecki's avatar Rafał Miłecki Committed by John W. Linville

b43: SDIO: use new pointers path to access ssb_device

SDIO code is SSB specific, we can safely just use "sdev"
Signed-off-by: default avatarRafał Miłecki <zajec5@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 6ac53692
...@@ -66,7 +66,7 @@ static void b43_sdio_interrupt_dispatcher(struct sdio_func *func) ...@@ -66,7 +66,7 @@ static void b43_sdio_interrupt_dispatcher(struct sdio_func *func)
int b43_sdio_request_irq(struct b43_wldev *dev, int b43_sdio_request_irq(struct b43_wldev *dev,
void (*handler)(struct b43_wldev *dev)) void (*handler)(struct b43_wldev *dev))
{ {
struct ssb_bus *bus = dev->sdev->bus; struct ssb_bus *bus = dev->dev->sdev->bus;
struct sdio_func *func = bus->host_sdio; struct sdio_func *func = bus->host_sdio;
struct b43_sdio *sdio = sdio_get_drvdata(func); struct b43_sdio *sdio = sdio_get_drvdata(func);
int err; int err;
...@@ -82,7 +82,7 @@ int b43_sdio_request_irq(struct b43_wldev *dev, ...@@ -82,7 +82,7 @@ int b43_sdio_request_irq(struct b43_wldev *dev,
void b43_sdio_free_irq(struct b43_wldev *dev) void b43_sdio_free_irq(struct b43_wldev *dev)
{ {
struct ssb_bus *bus = dev->sdev->bus; struct ssb_bus *bus = dev->dev->sdev->bus;
struct sdio_func *func = bus->host_sdio; struct sdio_func *func = bus->host_sdio;
struct b43_sdio *sdio = sdio_get_drvdata(func); struct b43_sdio *sdio = sdio_get_drvdata(func);
......
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