Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

USB: Add missing static markers to ohci-pnx4008

I can't see any reason why these would not be static.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Cc: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by

Jean Delvare and committed by
Greg Kroah-Hartman
09ce497e 08d3c18e

+4 -4
+4 -4
drivers/usb/host/ohci-pnx4008.c
··· 98 98 #define ISP1301_I2C_INTERRUPT_RISING 0xE 99 99 #define ISP1301_I2C_REG_CLEAR_ADDR 1 100 100 101 - struct i2c_driver isp1301_driver; 102 - struct i2c_client *isp1301_i2c_client; 101 + static struct i2c_driver isp1301_driver; 102 + static struct i2c_client *isp1301_i2c_client; 103 103 104 104 extern int usb_disabled(void); 105 105 extern int ocpi_enable(void); ··· 120 120 return 0; 121 121 } 122 122 123 - const struct i2c_device_id isp1301_id[] = { 123 + static const struct i2c_device_id isp1301_id[] = { 124 124 { "isp1301_pnx", 0 }, 125 125 { } 126 126 }; 127 127 128 - struct i2c_driver isp1301_driver = { 128 + static struct i2c_driver isp1301_driver = { 129 129 .driver = { 130 130 .name = "isp1301_pnx", 131 131 },