Linux Audio

Check our new training course

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