blob: ae0c70e24eb54f5574abe7b41b00ba07aec6b26c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef __GTA02HDQ_H__
#define __GTA02HDQ_H__
/* platform data */
struct gta02_hdq_platform_data {
/*
* give an opportunity to use us as parent for
* devices that depend on us
*/
void (*attach_child_devices)(struct device *parent_device);
};
int gta02hdq_read(int address);
int gta02hdq_write(int address, u8 data);
int gta02hdq_initialized(void);
#endif
|