diff options
author | Jean Delvare <khali@linux-fr.org> | 2006-02-27 17:09:22 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-03-23 17:21:54 -0500 |
commit | d7d2fe384703f3f57dac94e8e6303a9f0d9a6239 (patch) | |
tree | 20164709d167953c1f2e05d7ae2c922fc262e1e3 /drivers/i2c/busses | |
parent | 0cbcb4d39a83d4df7e45c13b5ebd9fe73e025237 (diff) |
[PATCH] I2C: i2c-amd756-s4882: Improve static mutex initialization
Static mutexes can be initialized at declaration time.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'drivers/i2c/busses')
-rw-r--r-- | drivers/i2c/busses/i2c-amd756-s4882.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/i2c/busses/i2c-amd756-s4882.c b/drivers/i2c/busses/i2c-amd756-s4882.c index f7b4cb4e9c75..08e915730caf 100644 --- a/drivers/i2c/busses/i2c-amd756-s4882.c +++ b/drivers/i2c/busses/i2c-amd756-s4882.c | |||
@@ -46,7 +46,7 @@ static struct i2c_adapter *s4882_adapter; | |||
46 | static struct i2c_algorithm *s4882_algo; | 46 | static struct i2c_algorithm *s4882_algo; |
47 | 47 | ||
48 | /* Wrapper access functions for multiplexed SMBus */ | 48 | /* Wrapper access functions for multiplexed SMBus */ |
49 | static struct mutex amd756_lock; | 49 | static DEFINE_MUTEX(amd756_lock); |
50 | 50 | ||
51 | static s32 amd756_access_virt0(struct i2c_adapter * adap, u16 addr, | 51 | static s32 amd756_access_virt0(struct i2c_adapter * adap, u16 addr, |
52 | unsigned short flags, char read_write, | 52 | unsigned short flags, char read_write, |
@@ -167,8 +167,6 @@ static int __init amd756_s4882_init(void) | |||
167 | } | 167 | } |
168 | 168 | ||
169 | printk(KERN_INFO "Enabling SMBus multiplexing for Tyan S4882\n"); | 169 | printk(KERN_INFO "Enabling SMBus multiplexing for Tyan S4882\n"); |
170 | mutex_init(&amd756_lock); | ||
171 | |||
172 | /* Define the 5 virtual adapters and algorithms structures */ | 170 | /* Define the 5 virtual adapters and algorithms structures */ |
173 | if (!(s4882_adapter = kzalloc(5 * sizeof(struct i2c_adapter), | 171 | if (!(s4882_adapter = kzalloc(5 * sizeof(struct i2c_adapter), |
174 | GFP_KERNEL))) { | 172 | GFP_KERNEL))) { |