aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/devices/bcm47xxsflash.h
diff options
context:
space:
mode:
authorRafał Miłecki <zajec5@gmail.com>2013-03-06 12:34:19 +0100
committerDavid Woodhouse <David.Woodhouse@intel.com>2013-04-05 13:14:14 +0100
commit1f816bc729fd5dec7c3633b0a54b75dc7a1fea0f (patch)
treeab58e0d4000de16f5a778e70e755e9d5c6716784 /drivers/mtd/devices/bcm47xxsflash.h
parentmtd: bcm47xxsflash: keep a reference to the BCMA (diff)
downloadlinux-dev-1f816bc729fd5dec7c3633b0a54b75dc7a1fea0f.tar.xz
linux-dev-1f816bc729fd5dec7c3633b0a54b75dc7a1fea0f.zip
mtd: bcm47xxsflash: store info about flash type
It's going to be needed for erase and write operations, they differ between Atmel and ST flashes. Signed-off-by: Rafał Miłecki <zajec5@gmail.com> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/devices/bcm47xxsflash.h')
-rw-r--r--drivers/mtd/devices/bcm47xxsflash.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/mtd/devices/bcm47xxsflash.h b/drivers/mtd/devices/bcm47xxsflash.h
index e37285e6fad9..44985294ed8f 100644
--- a/drivers/mtd/devices/bcm47xxsflash.h
+++ b/drivers/mtd/devices/bcm47xxsflash.h
@@ -5,9 +5,16 @@
struct bcma_drv_cc;
+enum bcm47xxsflash_type {
+ BCM47XXSFLASH_TYPE_ATMEL,
+ BCM47XXSFLASH_TYPE_ST,
+};
+
struct bcm47xxsflash {
struct bcma_drv_cc *bcma_cc;
+ enum bcm47xxsflash_type type;
+
u32 window;
u32 blocksize;
u16 numblocks;