blob: cce4e746619adef03f257558e2e080970db6231f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef LINUX_UCMB_H_
#define LINUX_UCMB_H_
struct ucmb_platform_data {
const char *name;
unsigned long gpio_cs;
unsigned int gpio_sck;
unsigned int gpio_miso;
unsigned int gpio_mosi;
struct platform_device *pdev; /* internal */
};
#endif /* LINUX_UCMB_H_ */
|