mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-03 15:55:38 +00:00
16 lines
214 B
C
16 lines
214 B
C
![]() |
#ifndef __BCM47XXSFLASH_H
|
||
|
#define __BCM47XXSFLASH_H
|
||
|
|
||
|
#include <linux/mtd/mtd.h>
|
||
|
|
||
|
struct bcm47xxsflash {
|
||
|
u32 window;
|
||
|
u32 blocksize;
|
||
|
u16 numblocks;
|
||
|
u32 size;
|
||
|
|
||
|
struct mtd_info mtd;
|
||
|
};
|
||
|
|
||
|
#endif /* BCM47XXSFLASH */
|