mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
a2f74a7dac
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
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 */
|