Browse Source

[PATCH] i2c: chips/ds1374.c fixup

The 'new_time' variable should be static.

Signed-off-by: Mark A. Greer <mgreer@mvista.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Mark A. Greer 19 năm trước cách đây
mục cha
commit
8e14d6c173
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      drivers/i2c/chips/ds1374.c

+ 1 - 1
drivers/i2c/chips/ds1374.c

@@ -165,7 +165,7 @@ static void ds1374_set_tlet(ulong arg)
 			 "can't confirm time set from rtc chip\n");
 }
 
-ulong new_time;
+static ulong new_time;
 
 DECLARE_TASKLET_DISABLED(ds1374_tasklet, ds1374_set_tlet, (ulong) & new_time);