Prev: [PATCH RFC 2/3] slist: singly-linked stack implementation
Next: [PATCH] reduce stack usage of node_read_meminfo()
From: Borislav Petkov on 8 Jul 2010 05:10 From: Axel Lin <axel.lin(a)gmail.com> Date: Thu, Jul 08, 2010 at 09:46:20AM +0800 > The following symbols are needlessly defined global: > > thz_dev > cl_dev > acerhdf_dev > acerhdf_dev_ops > acerhdf_cooling_ops > > This patch makes the symbols static. > > Signed-off-by: Axel Lin <axel.lin(a)gmail.com> Acked-by: Borislav Petkov <bp(a)alien8.de> > --- > drivers/platform/x86/acerhdf.c | 10 +++++----- > 1 files changed, 5 insertions(+), 5 deletions(-) > > diff --git a/drivers/platform/x86/acerhdf.c b/drivers/platform/x86/acerhdf.c > index 7b2384d..5caaaf0 100644 > --- a/drivers/platform/x86/acerhdf.c > +++ b/drivers/platform/x86/acerhdf.c > @@ -92,9 +92,9 @@ static unsigned int fanstate = ACERHDF_FAN_AUTO; > static char force_bios[16]; > static char force_product[16]; > static unsigned int prev_interval; > -struct thermal_zone_device *thz_dev; > -struct thermal_cooling_device *cl_dev; > -struct platform_device *acerhdf_dev; > +static struct thermal_zone_device *thz_dev; > +static struct thermal_cooling_device *cl_dev; > +static struct platform_device *acerhdf_dev; > > module_param(kernelmode, uint, 0); > MODULE_PARM_DESC(kernelmode, "Kernel mode fan control on / off"); > @@ -374,7 +374,7 @@ static int acerhdf_get_crit_temp(struct thermal_zone_device *thermal, > } > > /* bind callback functions to thermalzone */ > -struct thermal_zone_device_ops acerhdf_dev_ops = { > +static struct thermal_zone_device_ops acerhdf_dev_ops = { > .bind = acerhdf_bind, > .unbind = acerhdf_unbind, > .get_temp = acerhdf_get_ec_temp, > @@ -449,7 +449,7 @@ err_out: > } > > /* bind fan callbacks to fan device */ > -struct thermal_cooling_device_ops acerhdf_cooling_ops = { > +static struct thermal_cooling_device_ops acerhdf_cooling_ops = { > .get_max_state = acerhdf_get_max_state, > .get_cur_state = acerhdf_get_cur_state, > .set_cur_state = acerhdf_set_cur_state, > -- > 1.5.4.3 > > > -- Regards/Gruss, Boris. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
From: Peter Feuerer on 10 Jul 2010 13:50
Borislav Petkov writes: > From: Axel Lin <axel.lin(a)gmail.com> > Date: Thu, Jul 08, 2010 at 09:46:20AM +0800 > >> The following symbols are needlessly defined global: >> >> thz_dev >> cl_dev >> acerhdf_dev >> acerhdf_dev_ops >> acerhdf_cooling_ops >> >> This patch makes the symbols static. >> >> Signed-off-by: Axel Lin <axel.lin(a)gmail.com> > > Acked-by: Borislav Petkov <bp(a)alien8.de> Acked-by: Peter Feuerer <peter(a)piie.net> > >> --- >> drivers/platform/x86/acerhdf.c | 10 +++++----- >> 1 files changed, 5 insertions(+), 5 deletions(-) >> >> diff --git a/drivers/platform/x86/acerhdf.c b/drivers/platform/x86/acerhdf.c >> index 7b2384d..5caaaf0 100644 >> --- a/drivers/platform/x86/acerhdf.c >> +++ b/drivers/platform/x86/acerhdf.c >> @@ -92,9 +92,9 @@ static unsigned int fanstate = ACERHDF_FAN_AUTO; >> static char force_bios[16]; >> static char force_product[16]; >> static unsigned int prev_interval; >> -struct thermal_zone_device *thz_dev; >> -struct thermal_cooling_device *cl_dev; >> -struct platform_device *acerhdf_dev; >> +static struct thermal_zone_device *thz_dev; >> +static struct thermal_cooling_device *cl_dev; >> +static struct platform_device *acerhdf_dev; >> >> module_param(kernelmode, uint, 0); >> MODULE_PARM_DESC(kernelmode, "Kernel mode fan control on / off"); >> @@ -374,7 +374,7 @@ static int acerhdf_get_crit_temp(struct thermal_zone_device *thermal, >> } >> >> /* bind callback functions to thermalzone */ >> -struct thermal_zone_device_ops acerhdf_dev_ops = { >> +static struct thermal_zone_device_ops acerhdf_dev_ops = { >> .bind = acerhdf_bind, >> .unbind = acerhdf_unbind, >> .get_temp = acerhdf_get_ec_temp, >> @@ -449,7 +449,7 @@ err_out: >> } >> >> /* bind fan callbacks to fan device */ >> -struct thermal_cooling_device_ops acerhdf_cooling_ops = { >> +static struct thermal_cooling_device_ops acerhdf_cooling_ops = { >> .get_max_state = acerhdf_get_max_state, >> .get_cur_state = acerhdf_get_cur_state, >> .set_cur_state = acerhdf_set_cur_state, >> -- >> 1.5.4.3 >> >> >> thanks and kind regards, --peter; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |