diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-07-25 04:45:58 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-25 13:53:29 -0400 |
commit | 472dba7d117844c746be97db6be26c2810d79b62 (patch) | |
tree | 8d87f062253a1e295436dcdebe2a1ce6c2a73310 /include/linux/sm501.h | |
parent | 717115e1a5856b57af0f71e1df7149108294fc10 (diff) |
sm501: add power control callback
Add callback to get or set the power control if the device has the sleep
connected to some form of GPIO.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Cc: Arnaud Patard <apatard@mandriva.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/sm501.h')
-rw-r--r-- | include/linux/sm501.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/sm501.h b/include/linux/sm501.h index b530fa6a1d34..145405bf9efa 100644 --- a/include/linux/sm501.h +++ b/include/linux/sm501.h | |||
@@ -157,6 +157,8 @@ struct sm501_init_gpio { | |||
157 | struct sm501_reg_init gpio_ddr_high; | 157 | struct sm501_reg_init gpio_ddr_high; |
158 | }; | 158 | }; |
159 | 159 | ||
160 | #define SM501_FLAG_SUSPEND_OFF (1<<4) | ||
161 | |||
160 | /* sm501_platdata | 162 | /* sm501_platdata |
161 | * | 163 | * |
162 | * This is passed with the platform device to allow the board | 164 | * This is passed with the platform device to allow the board |
@@ -170,6 +172,11 @@ struct sm501_platdata { | |||
170 | struct sm501_init_gpio *init_gpiop; | 172 | struct sm501_init_gpio *init_gpiop; |
171 | struct sm501_platdata_fb *fb; | 173 | struct sm501_platdata_fb *fb; |
172 | 174 | ||
175 | int flags; | ||
176 | |||
177 | int (*get_power)(struct device *dev); | ||
178 | int (*set_power)(struct device *dev, unsigned int on); | ||
179 | |||
173 | struct sm501_platdata_gpio_i2c *gpio_i2c; | 180 | struct sm501_platdata_gpio_i2c *gpio_i2c; |
174 | unsigned int gpio_i2c_nr; | 181 | unsigned int gpio_i2c_nr; |
175 | }; | 182 | }; |