i2c-cht-wc: make cht_wc_i2c_adap_driver static
The structure cht_wc_i2c_adap_driver is local to the source and does not need to be in global scope, so make it static. Cleans up sparse warning: symbol 'cht_wc_i2c_adap_driver' was not declared. Should it be static? Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
This commit is contained in:
parent
d596f2b8b4
commit
5ca21c13c9
|
@ -348,7 +348,7 @@ static struct platform_device_id cht_wc_i2c_adap_id_table[] = {
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(platform, cht_wc_i2c_adap_id_table);
|
MODULE_DEVICE_TABLE(platform, cht_wc_i2c_adap_id_table);
|
||||||
|
|
||||||
struct platform_driver cht_wc_i2c_adap_driver = {
|
static struct platform_driver cht_wc_i2c_adap_driver = {
|
||||||
.probe = cht_wc_i2c_adap_i2c_probe,
|
.probe = cht_wc_i2c_adap_i2c_probe,
|
||||||
.remove = cht_wc_i2c_adap_i2c_remove,
|
.remove = cht_wc_i2c_adap_i2c_remove,
|
||||||
.driver = {
|
.driver = {
|
||||||
|
|
Loading…
Reference in New Issue