au1550nd.h 308 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * platform data for the Au1550 NAND driver
  4. */
  5. #ifndef _AU1550ND_H_
  6. #define _AU1550ND_H_
  7. #include <linux/mtd/partitions.h>
  8. struct au1550nd_platdata {
  9. struct mtd_partition *parts;
  10. int num_parts;
  11. int devwidth; /* 0 = 8bit device, 1 = 16bit device */
  12. };
  13. #endif