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