Commit b14d0fee authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Remove usage of struct device.name from bttv driver

I missed this on the i2c series of patches.
parent ee944b84
...@@ -315,7 +315,7 @@ int __devinit init_bttv_i2c(struct bttv *btv) ...@@ -315,7 +315,7 @@ int __devinit init_bttv_i2c(struct bttv *btv)
memcpy(&btv->i2c_client, &bttv_i2c_client_template, memcpy(&btv->i2c_client, &bttv_i2c_client_template,
sizeof(struct i2c_client)); sizeof(struct i2c_client));
sprintf(btv->i2c_adap.dev.name, "bt848 #%d", btv->nr); sprintf(btv->i2c_adap.name, "bt848 #%d", btv->nr);
btv->i2c_adap.dev.parent = &btv->dev->dev; btv->i2c_adap.dev.parent = &btv->dev->dev;
btv->i2c_algo.data = btv; btv->i2c_algo.data = btv;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment