aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/i2c/algos/i2c-algo-pca.c
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2005-08-11 17:33:24 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2005-09-05 12:14:27 -0400
commit975185880d55676b1352047e82a0cb84173c6c28 (patch)
tree613fdd41f1f967d3795144aae304ce20d3e40b19 /drivers/i2c/algos/i2c-algo-pca.c
parent4c9337da37c877e53a64696fc8524f642d446cba (diff)
[PATCH] I2C: Kill i2c_algorithm.name (1/7)
The name member of the i2c_algorithm is never used, although all drivers conscientiously fill it. We can drop it completely, this structure doesn't need to have a name. Signed-off-by: Jean Delvare <khali@linux-fr.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/i2c/algos/i2c-algo-pca.c')
-rw-r--r--drivers/i2c/algos/i2c-algo-pca.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/i2c/algos/i2c-algo-pca.c b/drivers/i2c/algos/i2c-algo-pca.c
index ff2db0da4417..16157391cdf5 100644
--- a/drivers/i2c/algos/i2c-algo-pca.c
+++ b/drivers/i2c/algos/i2c-algo-pca.c
@@ -356,7 +356,6 @@ static int pca_init(struct i2c_algo_pca_data *adap)
356} 356}
357 357
358static struct i2c_algorithm pca_algo = { 358static struct i2c_algorithm pca_algo = {
359 .name = "PCA9564 algorithm",
360 .id = I2C_ALGO_PCA, 359 .id = I2C_ALGO_PCA,
361 .master_xfer = pca_xfer, 360 .master_xfer = pca_xfer,
362 .functionality = pca_func, 361 .functionality = pca_func,