diff options
-rw-r--r-- | drivers/mtd/devices/bcm47xxsflash.c | 2 | ||||
-rw-r--r-- | drivers/mtd/devices/bcm47xxsflash.h | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/drivers/mtd/devices/bcm47xxsflash.c b/drivers/mtd/devices/bcm47xxsflash.c index f86a78732dd8..b0705741fd93 100644 --- a/drivers/mtd/devices/bcm47xxsflash.c +++ b/drivers/mtd/devices/bcm47xxsflash.c | |||
@@ -61,6 +61,8 @@ static int bcm47xxsflash_bcma_probe(struct platform_device *pdev) | |||
61 | } | 61 | } |
62 | sflash->priv = b47s; | 62 | sflash->priv = b47s; |
63 | 63 | ||
64 | b47s->bcma_cc = container_of(sflash, struct bcma_drv_cc, sflash); | ||
65 | |||
64 | b47s->window = sflash->window; | 66 | b47s->window = sflash->window; |
65 | b47s->blocksize = sflash->blocksize; | 67 | b47s->blocksize = sflash->blocksize; |
66 | b47s->numblocks = sflash->numblocks; | 68 | b47s->numblocks = sflash->numblocks; |
diff --git a/drivers/mtd/devices/bcm47xxsflash.h b/drivers/mtd/devices/bcm47xxsflash.h index ebf6f710e23c..e37285e6fad9 100644 --- a/drivers/mtd/devices/bcm47xxsflash.h +++ b/drivers/mtd/devices/bcm47xxsflash.h | |||
@@ -3,7 +3,11 @@ | |||
3 | 3 | ||
4 | #include <linux/mtd/mtd.h> | 4 | #include <linux/mtd/mtd.h> |
5 | 5 | ||
6 | struct bcma_drv_cc; | ||
7 | |||
6 | struct bcm47xxsflash { | 8 | struct bcm47xxsflash { |
9 | struct bcma_drv_cc *bcma_cc; | ||
10 | |||
7 | u32 window; | 11 | u32 window; |
8 | u32 blocksize; | 12 | u32 blocksize; |
9 | u16 numblocks; | 13 | u16 numblocks; |