Commit 5442381cdd311633d18f8bb52a66ede2d0fa502c

Authored by Geoff Levand
Committed by Paul Mackerras
1 parent fdedb4caea

[POWERPC] PS3: Remove unsupported wakeup sources

Other OS wakeup is not supported from the IR controller,
the bluetooth controller nor the RTC.  Remove references
to these in the PS3 sys-manager source.

Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>

Showing 1 changed file with 1 additions and 6 deletions Side-by-side Diff

drivers/ps3/ps3-sys-manager.c
... ... @@ -184,10 +184,7 @@
184 184  
185 185 /**
186 186 * enum ps3_sys_manager_wake_source - Next-op wakeup source (bit position mask).
187   - * @PS3_SM_WAKE_DEFAULT: Disk insert, power button, eject button, IR
188   - * controller, and bluetooth controller.
189   - * @PS3_SM_WAKE_RTC:
190   - * @PS3_SM_WAKE_RTC_ERROR:
  187 + * @PS3_SM_WAKE_DEFAULT: Disk insert, power button, eject button.
191 188 * @PS3_SM_WAKE_W_O_L: Ether or wireless LAN.
192 189 * @PS3_SM_WAKE_P_O_R: Power on reset.
193 190 *
... ... @@ -200,8 +197,6 @@
200 197 enum ps3_sys_manager_wake_source {
201 198 /* version 3 */
202 199 PS3_SM_WAKE_DEFAULT = 0,
203   - PS3_SM_WAKE_RTC = 0x00000040,
204   - PS3_SM_WAKE_RTC_ERROR = 0x00000080,
205 200 PS3_SM_WAKE_W_O_L = 0x00000400,
206 201 PS3_SM_WAKE_P_O_R = 0x80000000,
207 202 };