From: Jean Delvare Date: Wed, 9 Dec 2009 19:36:03 +0000 (+0100) Subject: hwmon: (adt7475) Add missing static marker X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=54ecb9e3c194687eebabe7ca45bae889ac1cd4de;p=linux-beck.git hwmon: (adt7475) Add missing static marker adt7475_attr_group is used internally only and can thus be marked static. Signed-off-by: Jean Delvare Cc: Hans de Goede Cc: Jordan Crouse Cc: "Darrick J. Wong" --- diff --git a/drivers/hwmon/adt7475.c b/drivers/hwmon/adt7475.c index e9f69ee197d7..20bab51e16f4 100644 --- a/drivers/hwmon/adt7475.c +++ b/drivers/hwmon/adt7475.c @@ -1008,7 +1008,7 @@ static struct attribute *adt7475_attrs[] = { NULL, }; -struct attribute_group adt7475_attr_group = { .attrs = adt7475_attrs }; +static struct attribute_group adt7475_attr_group = { .attrs = adt7475_attrs }; static int adt7475_detect(struct i2c_client *client, int kind, struct i2c_board_info *info)