i2c-matroxfb: Struct init conversion
i2c-matroxfb: Struct init conversion Convert the struct i2c_algo_bit_data initialization to proper C99 style. Signed-off-by: Jean Delvare <khali@linux-fr.org> Acked-by: Petr Vandrovec <vandrove@vc.cvut.cz> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
be53f9b2a0
commit
8241cb1401
1 changed files with 7 additions and 6 deletions
|
@ -95,12 +95,13 @@ static struct i2c_adapter matrox_i2c_adapter_template =
|
||||||
|
|
||||||
static struct i2c_algo_bit_data matrox_i2c_algo_template =
|
static struct i2c_algo_bit_data matrox_i2c_algo_template =
|
||||||
{
|
{
|
||||||
NULL,
|
.setsda = matroxfb_gpio_setsda,
|
||||||
matroxfb_gpio_setsda,
|
.setscl = matroxfb_gpio_setscl,
|
||||||
matroxfb_gpio_setscl,
|
.getsda = matroxfb_gpio_getsda,
|
||||||
matroxfb_gpio_getsda,
|
.getscl = matroxfb_gpio_getscl,
|
||||||
matroxfb_gpio_getscl,
|
.udelay = 10,
|
||||||
10, 10, 100,
|
.mdelay = 10,
|
||||||
|
.timeout = 100,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int i2c_bus_reg(struct i2c_bit_adapter* b, struct matrox_fb_info* minfo,
|
static int i2c_bus_reg(struct i2c_bit_adapter* b, struct matrox_fb_info* minfo,
|
||||||
|
|
Loading…
Reference in a new issue