Subversion Repositories freemyipod

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
881 theseven 1
#ifndef __SOC_S5L87XX_I2C_H__
2
#define __SOC_S5L87XX_I2C_H__
3
 
4
#include "global.h"
5
#include "protocol/i2c/i2c.h"
6
 
7
#ifndef ASM_FILE
8
struct __attribute__((packed,aligned(4))) s5l87xx_i2c_driver_config
9
{
10
    uint8_t index;
11
    uint8_t reserved[3];
12
};
13
 
14
struct __attribute__((packed,aligned(4))) s5l87xx_i2c_driver_state
15
{
16
};
17
 
18
extern const struct i2c_driver s5l87xx_i2c_driver;
19
#endif
20
 
21
#endif