diff options
author | Linus Walleij <linus.walleij@stericsson.com> | 2009-08-13 05:49:23 -0400 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2009-09-17 03:47:15 -0400 |
commit | 956f25a6778a2510d52973ab8a3ac2e03e2c3704 (patch) | |
tree | 71a9627cd02f02091982459dd03af9f36a20c0c7 /include | |
parent | 35c86bf66d9d0ebc3f32f8c56251197b3921394e (diff) |
mfd: AB3100 accessor function cleanups
This adds the _interruptible suffix to the AB3100 accessor
functions on par with mutex_lock_interruptible() that's used
for blocking simultaneous calls to the AB3100 acessor functions.
Since these accesses are slow on a 100kHz I2C bus and may line
up waiting for the mutex, we need to handle interruption by
system shutdown or kill signals and may just as well denote that
in the function names.
Signed-off-by: Linus Walleij <linus.walleij@stericsson.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mfd/ab3100.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/mfd/ab3100.h b/include/linux/mfd/ab3100.h index 7a3f316e3848..56343b8013b5 100644 --- a/include/linux/mfd/ab3100.h +++ b/include/linux/mfd/ab3100.h | |||
@@ -86,11 +86,11 @@ struct ab3100 { | |||
86 | bool startup_events_read; | 86 | bool startup_events_read; |
87 | }; | 87 | }; |
88 | 88 | ||
89 | int ab3100_set_register(struct ab3100 *ab3100, u8 reg, u8 regval); | 89 | int ab3100_set_register_interruptible(struct ab3100 *ab3100, u8 reg, u8 regval); |
90 | int ab3100_get_register(struct ab3100 *ab3100, u8 reg, u8 *regval); | 90 | int ab3100_get_register_interruptible(struct ab3100 *ab3100, u8 reg, u8 *regval); |
91 | int ab3100_get_register_page(struct ab3100 *ab3100, | 91 | int ab3100_get_register_page_interruptible(struct ab3100 *ab3100, |
92 | u8 first_reg, u8 *regvals, u8 numregs); | 92 | u8 first_reg, u8 *regvals, u8 numregs); |
93 | int ab3100_mask_and_set_register(struct ab3100 *ab3100, | 93 | int ab3100_mask_and_set_register_interruptible(struct ab3100 *ab3100, |
94 | u8 reg, u8 andmask, u8 ormask); | 94 | u8 reg, u8 andmask, u8 ormask); |
95 | u8 ab3100_get_chip_type(struct ab3100 *ab3100); | 95 | u8 ab3100_get_chip_type(struct ab3100 *ab3100); |
96 | int ab3100_event_register(struct ab3100 *ab3100, | 96 | int ab3100_event_register(struct ab3100 *ab3100, |