From: Rafał Miłecki Date: Wed, 6 Mar 2013 11:33:17 +0000 (+0100) Subject: mtd: bcm47xxsflash: keep a reference to the BCMA X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=41c81536ea25d17933b5b503053a5990ec05502a;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git 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: Rafał Miłecki Signed-off-by: Artem Bityutskiy Signed-off-by: David Woodhouse --- 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) } 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; 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 @@ #include +struct bcma_drv_cc; + struct bcm47xxsflash { + struct bcma_drv_cc *bcma_cc; + u32 window; u32 blocksize; u16 numblocks;