15 lines
300 B
C
Executable File
15 lines
300 B
C
Executable File
/*
|
|
* Copyright (c) LOTUS. All rights reserved.
|
|
*/
|
|
#ifndef __FMC_H__
|
|
#define __FMC_H__
|
|
|
|
#include <spi_flash.h>
|
|
#include <linux/mtd/mtd.h>
|
|
|
|
struct spi_flash *fmc100_spi_nor_probe(struct mtd_info_ex **);
|
|
struct mtd_info_ex *fmc100_get_spi_nor_info(struct spi_flash *);
|
|
|
|
#endif /* End of __FMC_H__ */
|
|
|