diff options
Diffstat (limited to 'sound/oss')
-rw-r--r-- | sound/oss/dmasound/dac3550a.c | 6 | ||||
-rw-r--r-- | sound/oss/dmasound/tas_common.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sound/oss/dmasound/dac3550a.c b/sound/oss/dmasound/dac3550a.c index 533895eba0eb..7360d8954d60 100644 --- a/sound/oss/dmasound/dac3550a.c +++ b/sound/oss/dmasound/dac3550a.c | |||
@@ -41,10 +41,10 @@ static int daca_detect_client(struct i2c_adapter *adapter, int address); | |||
41 | static int daca_detach_client(struct i2c_client *client); | 41 | static int daca_detach_client(struct i2c_client *client); |
42 | 42 | ||
43 | struct i2c_driver daca_driver = { | 43 | struct i2c_driver daca_driver = { |
44 | .owner = THIS_MODULE, | 44 | .driver = { |
45 | .name = "DAC3550A driver V " DACA_VERSION, | 45 | .name = "DAC3550A driver V " DACA_VERSION, |
46 | }, | ||
46 | .id = I2C_DRIVERID_DACA, | 47 | .id = I2C_DRIVERID_DACA, |
47 | .flags = I2C_DF_NOTIFY, | ||
48 | .attach_adapter = daca_attach_adapter, | 48 | .attach_adapter = daca_attach_adapter, |
49 | .detach_client = daca_detach_client, | 49 | .detach_client = daca_detach_client, |
50 | }; | 50 | }; |
diff --git a/sound/oss/dmasound/tas_common.c b/sound/oss/dmasound/tas_common.c index d36a1fe2fcf3..81315996c0f1 100644 --- a/sound/oss/dmasound/tas_common.c +++ b/sound/oss/dmasound/tas_common.c | |||
@@ -47,9 +47,9 @@ static int tas_attach_adapter(struct i2c_adapter *); | |||
47 | static int tas_detach_client(struct i2c_client *); | 47 | static int tas_detach_client(struct i2c_client *); |
48 | 48 | ||
49 | struct i2c_driver tas_driver = { | 49 | struct i2c_driver tas_driver = { |
50 | .owner = THIS_MODULE, | 50 | .driver = { |
51 | .name = "tas", | 51 | .name = "tas", |
52 | .flags = I2C_DF_NOTIFY, | 52 | }, |
53 | .attach_adapter = tas_attach_adapter, | 53 | .attach_adapter = tas_attach_adapter, |
54 | .detach_client = tas_detach_client, | 54 | .detach_client = tas_detach_client, |
55 | }; | 55 | }; |