Skip to content

Commit

Permalink
eeepc-wmi: remove unneeded static
Browse files Browse the repository at this point in the history
Signed-off-by: Corentin Chary <corentincj@iksaif.net>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
  • Loading branch information
Corentin Chary authored and Matthew Garrett committed Jan 7, 2011
1 parent 4c4edfa commit dfed65d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/platform/x86/eeepc-wmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ static void tpd_led_set(struct led_classdev *led_cdev,

static int read_tpd_state(struct eeepc_wmi *eeepc)
{
static u32 retval;
u32 retval;
acpi_status status;

status = eeepc_wmi_get_devstate(EEEPC_WMI_DEVID_TPDLED, &retval);
Expand Down Expand Up @@ -458,7 +458,7 @@ static int eeepc_wmi_rfkill_init(struct eeepc_wmi *eeepc)
*/
static int read_brightness(struct backlight_device *bd)
{
static u32 retval;
u32 retval;
acpi_status status;

status = eeepc_wmi_get_devstate(EEEPC_WMI_DEVID_BACKLIGHT, &retval);
Expand All @@ -472,7 +472,7 @@ static int read_brightness(struct backlight_device *bd)
static int update_bl_status(struct backlight_device *bd)
{

static u32 ctrl_param;
u32 ctrl_param;
acpi_status status;

ctrl_param = bd->props.brightness;
Expand Down

0 comments on commit dfed65d

Please sign in to comment.