blob: ea67dc3f631524398fc5f3080a79705e63fde895 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
Index: driver/tda9887.c
===================================================================
--- driver/tda9887.c (revision 2702)
+++ driver/tda9887.c (working copy)
@@ -856,7 +856,7 @@
};
static struct i2c_client client_template =
{
- I2C_DEVNAME("tda9887"),
+ .name = "tda9887",
.flags = I2C_CLIENT_ALLOW_USE,
.driver = &driver,
};
Index: driver/tuner.c
===================================================================
--- driver/tuner.c (revision 2702)
+++ driver/tuner.c (working copy)
@@ -1854,7 +1854,7 @@
.command = tuner_command,
};
static struct i2c_client client_template = {
- I2C_DEVNAME("(tuner unset)"),
+ .name = "tuner unset",
.flags = I2C_CLIENT_ALLOW_USE,
.driver = &driver,
};
|