mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-22 11:14:43 +02:00
13 lines
268 B
C
13 lines
268 B
C
|
#ifndef __JBT6K74_H__
|
||
|
#define __JBT6K74_H__
|
||
|
|
||
|
#include <linux/spi/spi.h>
|
||
|
|
||
|
struct jbt6k74_platform_data {
|
||
|
void (*reset)(int devindex, int level);
|
||
|
void (*resuming)(int devindex); /* called when LCM is resumed */
|
||
|
void (*probe_completed)(struct device *dev);
|
||
|
};
|
||
|
|
||
|
#endif
|