Commit 41c81536 authored by Rafał Miłecki's avatar Rafał Miłecki Committed by David Woodhouse

mtd: bcm47xxsflash: keep a reference to the BCMA

To implement erase and write support we need to "talk" with ChipCommon
BCMA core which serial flash it attached to.
Signed-off-by: default avatarRafał Miłecki <zajec5@gmail.com>
Signed-off-by: default avatarArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent ccef4dcc
......@@ -61,6 +61,8 @@ static int bcm47xxsflash_bcma_probe(struct platform_device *pdev)
}
sflash->priv = b47s;
b47s->bcma_cc = container_of(sflash, struct bcma_drv_cc, sflash);
b47s->window = sflash->window;
b47s->blocksize = sflash->blocksize;
b47s->numblocks = sflash->numblocks;
......
......@@ -3,7 +3,11 @@
#include <linux/mtd/mtd.h>
struct bcma_drv_cc;
struct bcm47xxsflash {
struct bcma_drv_cc *bcma_cc;
u32 window;
u32 blocksize;
u16 numblocks;
......
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