diff options
author | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-30 19:16:45 -0400 |
---|---|---|
committer | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-30 19:16:45 -0400 |
commit | ada47b5fe13d89735805b566185f4885f5a3f750 (patch) | |
tree | 644b88f8a71896307d71438e9b3af49126ffb22b /drivers/ps3 | |
parent | 43e98717ad40a4ae64545b5ba047c7b86aa44f4f (diff) | |
parent | 3280f21d43ee541f97f8cda5792150d2dbec20d5 (diff) |
Merge branch 'wip-2.6.34' into old-private-masterarchived-private-master
Diffstat (limited to 'drivers/ps3')
-rw-r--r-- | drivers/ps3/ps3-lpm.c | 1 | ||||
-rw-r--r-- | drivers/ps3/ps3-sys-manager.c | 2 | ||||
-rw-r--r-- | drivers/ps3/ps3-vuart.c | 1 | ||||
-rw-r--r-- | drivers/ps3/ps3av.c | 3 |
4 files changed, 5 insertions, 2 deletions
diff --git a/drivers/ps3/ps3-lpm.c b/drivers/ps3/ps3-lpm.c index fe96793e3f08..8000985d0e8c 100644 --- a/drivers/ps3/ps3-lpm.c +++ b/drivers/ps3/ps3-lpm.c | |||
@@ -18,6 +18,7 @@ | |||
18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
19 | */ | 19 | */ |
20 | 20 | ||
21 | #include <linux/slab.h> | ||
21 | #include <linux/kernel.h> | 22 | #include <linux/kernel.h> |
22 | #include <linux/module.h> | 23 | #include <linux/module.h> |
23 | #include <linux/interrupt.h> | 24 | #include <linux/interrupt.h> |
diff --git a/drivers/ps3/ps3-sys-manager.c b/drivers/ps3/ps3-sys-manager.c index 88cb74088611..3cbaf1811bd0 100644 --- a/drivers/ps3/ps3-sys-manager.c +++ b/drivers/ps3/ps3-sys-manager.c | |||
@@ -46,7 +46,7 @@ | |||
46 | /** | 46 | /** |
47 | * struct ps3_sys_manager_header - System manager message header. | 47 | * struct ps3_sys_manager_header - System manager message header. |
48 | * @version: Header version, currently 1. | 48 | * @version: Header version, currently 1. |
49 | * @size: Header size in bytes, curently 16. | 49 | * @size: Header size in bytes, currently 16. |
50 | * @payload_size: Message payload size in bytes. | 50 | * @payload_size: Message payload size in bytes. |
51 | * @service_id: Message type, one of enum ps3_sys_manager_service_id. | 51 | * @service_id: Message type, one of enum ps3_sys_manager_service_id. |
52 | * @request_tag: Unique number to identify reply. | 52 | * @request_tag: Unique number to identify reply. |
diff --git a/drivers/ps3/ps3-vuart.c b/drivers/ps3/ps3-vuart.c index e4ad5ba5d0a3..d9fb729535a1 100644 --- a/drivers/ps3/ps3-vuart.c +++ b/drivers/ps3/ps3-vuart.c | |||
@@ -19,6 +19,7 @@ | |||
19 | */ | 19 | */ |
20 | 20 | ||
21 | #include <linux/kernel.h> | 21 | #include <linux/kernel.h> |
22 | #include <linux/slab.h> | ||
22 | #include <linux/module.h> | 23 | #include <linux/module.h> |
23 | #include <linux/interrupt.h> | 24 | #include <linux/interrupt.h> |
24 | #include <linux/workqueue.h> | 25 | #include <linux/workqueue.h> |
diff --git a/drivers/ps3/ps3av.c b/drivers/ps3/ps3av.c index e82d8c9c6cda..a409fa050a1a 100644 --- a/drivers/ps3/ps3av.c +++ b/drivers/ps3/ps3av.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <linux/notifier.h> | 24 | #include <linux/notifier.h> |
25 | #include <linux/ioctl.h> | 25 | #include <linux/ioctl.h> |
26 | #include <linux/fb.h> | 26 | #include <linux/fb.h> |
27 | #include <linux/slab.h> | ||
27 | 28 | ||
28 | #include <asm/firmware.h> | 29 | #include <asm/firmware.h> |
29 | #include <asm/ps3av.h> | 30 | #include <asm/ps3av.h> |
@@ -532,7 +533,7 @@ static void ps3av_set_videomode_packet(u32 id) | |||
532 | res = ps3av_cmd_avb_param(&avb_param, len); | 533 | res = ps3av_cmd_avb_param(&avb_param, len); |
533 | if (res == PS3AV_STATUS_NO_SYNC_HEAD) | 534 | if (res == PS3AV_STATUS_NO_SYNC_HEAD) |
534 | printk(KERN_WARNING | 535 | printk(KERN_WARNING |
535 | "%s: Command failed. Please try your request again. \n", | 536 | "%s: Command failed. Please try your request again.\n", |
536 | __func__); | 537 | __func__); |
537 | else if (res) | 538 | else if (res) |
538 | dev_dbg(&ps3av->dev->core, "ps3av_cmd_avb_param failed\n"); | 539 | dev_dbg(&ps3av->dev->core, "ps3av_cmd_avb_param failed\n"); |