diff options
Diffstat (limited to 'drivers/ps3')
| -rw-r--r-- | drivers/ps3/Makefile | 2 | ||||
| -rw-r--r-- | drivers/ps3/ps3-lpm.c | 8 | ||||
| -rw-r--r-- | drivers/ps3/ps3-sys-manager.c | 4 | ||||
| -rw-r--r-- | drivers/ps3/ps3-vuart.c | 6 | ||||
| -rw-r--r-- | drivers/ps3/ps3av.c | 26 | ||||
| -rw-r--r-- | drivers/ps3/ps3stor_lib.c | 3 | ||||
| -rw-r--r-- | drivers/ps3/sys-manager-core.c | 1 | 
7 files changed, 22 insertions, 28 deletions
diff --git a/drivers/ps3/Makefile b/drivers/ps3/Makefile index ccea15c11c1..50cb1e1b4a1 100644 --- a/drivers/ps3/Makefile +++ b/drivers/ps3/Makefile @@ -1,6 +1,6 @@  obj-$(CONFIG_PS3_VUART) += ps3-vuart.o  obj-$(CONFIG_PS3_PS3AV) += ps3av_mod.o -ps3av_mod-objs		+= ps3av.o ps3av_cmd.o +ps3av_mod-y		:= ps3av.o ps3av_cmd.o  obj-$(CONFIG_PPC_PS3) += sys-manager-core.o  obj-$(CONFIG_PS3_SYS_MANAGER) += ps3-sys-manager.o  obj-$(CONFIG_PS3_STORAGE) += ps3stor_lib.o diff --git a/drivers/ps3/ps3-lpm.c b/drivers/ps3/ps3-lpm.c index 8000985d0e8..b139b7792e9 100644 --- a/drivers/ps3/ps3-lpm.c +++ b/drivers/ps3/ps3-lpm.c @@ -919,7 +919,7 @@ EXPORT_SYMBOL_GPL(ps3_disable_pm);   * @offset: Offset in bytes from the start of the trace buffer.   * @buf: Copy destination.   * @count: Maximum count of bytes to copy. - * @bytes_copied: Pointer to a variable that will recieve the number of + * @bytes_copied: Pointer to a variable that will receive the number of   *  bytes copied to @buf.   *   * On error @buf will contain any successfully copied trace buffer data @@ -974,7 +974,7 @@ EXPORT_SYMBOL_GPL(ps3_lpm_copy_tb);   * @offset: Offset in bytes from the start of the trace buffer.   * @buf: A __user copy destination.   * @count: Maximum count of bytes to copy. - * @bytes_copied: Pointer to a variable that will recieve the number of + * @bytes_copied: Pointer to a variable that will receive the number of   *  bytes copied to @buf.   *   * On error @buf will contain any successfully copied trace buffer data @@ -1074,7 +1074,7 @@ EXPORT_SYMBOL_GPL(ps3_disable_pm_interrupts);  /**   * ps3_lpm_open - Open the logical performance monitor device. - * @tb_type: Specifies the type of trace buffer lv1 sould use for this lpm + * @tb_type: Specifies the type of trace buffer lv1 should use for this lpm   *  instance, specified by one of enum ps3_lpm_tb_type.   * @tb_cache: Optional user supplied buffer to use as the trace buffer cache.   *  If NULL, the driver will allocate and manage an internal buffer. @@ -1185,7 +1185,7 @@ int ps3_lpm_close(void)  }  EXPORT_SYMBOL_GPL(ps3_lpm_close); -static int __devinit ps3_lpm_probe(struct ps3_system_bus_device *dev) +static int ps3_lpm_probe(struct ps3_system_bus_device *dev)  {  	dev_dbg(&dev->core, " -> %s:%u\n", __func__, __LINE__); diff --git a/drivers/ps3/ps3-sys-manager.c b/drivers/ps3/ps3-sys-manager.c index d37c445f0ed..f2ab435954f 100644 --- a/drivers/ps3/ps3-sys-manager.c +++ b/drivers/ps3/ps3-sys-manager.c @@ -80,7 +80,7 @@ static void __maybe_unused _dump_sm_header(   *   * Currently all messages received from the system manager are either   * (16 bytes header + 8 bytes payload = 24 bytes) or (16 bytes header - * + 16 bytes payload = 32 bytes).  This knowlege is used to simplify + * + 16 bytes payload = 32 bytes).  This knowledge is used to simplify   * the logic.   */ @@ -706,7 +706,7 @@ static void ps3_sys_manager_work(struct ps3_system_bus_device *dev)  	ps3_vuart_read_async(dev, PS3_SM_RX_MSG_LEN_MIN);  } -static int __devinit ps3_sys_manager_probe(struct ps3_system_bus_device *dev) +static int ps3_sys_manager_probe(struct ps3_system_bus_device *dev)  {  	int result;  	struct ps3_sys_manager_ops ops; diff --git a/drivers/ps3/ps3-vuart.c b/drivers/ps3/ps3-vuart.c index d9fb729535a..bc1e5139ba2 100644 --- a/drivers/ps3/ps3-vuart.c +++ b/drivers/ps3/ps3-vuart.c @@ -699,8 +699,6 @@ int ps3_vuart_read_async(struct ps3_system_bus_device *dev, unsigned int bytes)  	BUG_ON(!bytes); -	PREPARE_WORK(&priv->rx_list.work.work, ps3_vuart_work); -  	spin_lock_irqsave(&priv->rx_list.lock, flags);  	if (priv->rx_list.bytes_held >= bytes) {  		dev_dbg(&dev->core, "%s:%d: schedule_work %xh bytes\n", @@ -952,7 +950,7 @@ static int ps3_vuart_bus_interrupt_get(void)  	}  	result = request_irq(vuart_bus_priv.virq, ps3_vuart_irq_handler, -		IRQF_DISABLED, "vuart", &vuart_bus_priv); +		0, "vuart", &vuart_bus_priv);  	if (result) {  		pr_debug("%s:%d: request_irq failed (%d)\n", @@ -1052,7 +1050,7 @@ static int ps3_vuart_probe(struct ps3_system_bus_device *dev)  	INIT_LIST_HEAD(&priv->rx_list.head);  	spin_lock_init(&priv->rx_list.lock); -	INIT_WORK(&priv->rx_list.work.work, NULL); +	INIT_WORK(&priv->rx_list.work.work, ps3_vuart_work);  	priv->rx_list.work.trigger = 0;  	priv->rx_list.work.dev = dev; diff --git a/drivers/ps3/ps3av.c b/drivers/ps3/ps3av.c index a409fa050a1..437fc35beb7 100644 --- a/drivers/ps3/ps3av.c +++ b/drivers/ps3/ps3av.c @@ -338,7 +338,7 @@ int ps3av_do_pkt(u32 cid, u16 send_len, size_t usr_buf_size,  	mutex_unlock(&ps3av->mutex);  	return 0; -      err: +err:  	mutex_unlock(&ps3av->mutex);  	printk(KERN_ERR "%s: failed cid:%x res:%d\n", __func__, cid, res);  	return res; @@ -477,7 +477,6 @@ int ps3av_set_audio_mode(u32 ch, u32 fs, u32 word_bits, u32 format, u32 source)  	return 0;  } -  EXPORT_SYMBOL_GPL(ps3av_set_audio_mode);  static int ps3av_set_videomode(void) @@ -501,7 +500,7 @@ static void ps3av_set_videomode_packet(u32 id)  	video_mode = &video_mode_table[id & PS3AV_MODE_MASK]; -	avb_param.num_of_video_pkt = PS3AV_AVB_NUM_VIDEO;	/* num of head */ +	avb_param.num_of_video_pkt = PS3AV_AVB_NUM_VIDEO; /* num of head */  	avb_param.num_of_audio_pkt = 0;  	avb_param.num_of_av_video_pkt = ps3av->av_hw_conf.num_of_hdmi +  					ps3av->av_hw_conf.num_of_avmulti; @@ -521,7 +520,7 @@ static void ps3av_set_videomode_packet(u32 id)  #ifndef PS3AV_HDMI_YUV  		if (ps3av->av_port[i] == PS3AV_CMD_AVPORT_HDMI_0 ||  		    ps3av->av_port[i] == PS3AV_CMD_AVPORT_HDMI_1) -			av_video_cs = RGB8;	/* use RGB for HDMI */ +			av_video_cs = RGB8; /* use RGB for HDMI */  #endif  		len += ps3av_cmd_set_av_video_cs(&avb_param.buf[len],  						 ps3av->av_port[i], @@ -590,8 +589,8 @@ static void ps3avd(struct work_struct *work)  #define SHIFT_VESA	8  static const struct { -	unsigned mask : 19; -	unsigned id :  4; +	unsigned mask:19; +	unsigned id:4;  } ps3av_preferred_modes[] = {  	{ PS3AV_RESBIT_WUXGA      << SHIFT_VESA, PS3AV_MODE_WUXGA   },  	{ PS3AV_RESBIT_1920x1080P << SHIFT_60,   PS3AV_MODE_1080P60 }, @@ -667,7 +666,8 @@ static enum ps3av_mode_num ps3av_hdmi_get_id(struct ps3av_info_monitor *info)  	return id;  } -static void ps3av_monitor_info_dump(const struct ps3av_pkt_av_get_monitor_info *monitor_info) +static void ps3av_monitor_info_dump( +	const struct ps3av_pkt_av_get_monitor_info *monitor_info)  {  	const struct ps3av_info_monitor *info = &monitor_info->info;  	const struct ps3av_info_audio *audio = info->audio; @@ -717,8 +717,8 @@ static void ps3av_monitor_info_dump(const struct ps3av_pkt_av_get_monitor_info *  	/* audio block */  	for (i = 0; i < info->num_of_audio_block; i++) { -		pr_debug("audio[%d] type: %02x max_ch: %02x fs: %02x sbit: " -			 "%02x\n", +		pr_debug( +			"audio[%d] type: %02x max_ch: %02x fs: %02x sbit: %02x\n",  			 i, audio->type, audio->max_num_of_ch, audio->fs,  			 audio->sbit);  		audio++; @@ -870,21 +870,18 @@ int ps3av_set_video_mode(int id)  	return 0;  } -  EXPORT_SYMBOL_GPL(ps3av_set_video_mode);  int ps3av_get_auto_mode(void)  {  	return ps3av_auto_videomode(&ps3av->av_hw_conf);  } -  EXPORT_SYMBOL_GPL(ps3av_get_auto_mode);  int ps3av_get_mode(void)  {  	return ps3av ? ps3av->ps3av_mode : 0;  } -  EXPORT_SYMBOL_GPL(ps3av_get_mode);  /* get resolution by video_mode */ @@ -902,7 +899,6 @@ int ps3av_video_mode2res(u32 id, u32 *xres, u32 *yres)  	*yres = video_mode_table[id].y;  	return 0;  } -  EXPORT_SYMBOL_GPL(ps3av_video_mode2res);  /* mute */ @@ -911,7 +907,6 @@ int ps3av_video_mute(int mute)  	return ps3av_set_av_video_mute(mute ? PS3AV_CMD_MUTE_ON  					    : PS3AV_CMD_MUTE_OFF);  } -  EXPORT_SYMBOL_GPL(ps3av_video_mute);  /* mute analog output only */ @@ -935,10 +930,9 @@ int ps3av_audio_mute(int mute)  	return ps3av_set_audio_mute(mute ? PS3AV_CMD_MUTE_ON  					 : PS3AV_CMD_MUTE_OFF);  } -  EXPORT_SYMBOL_GPL(ps3av_audio_mute); -static int __devinit ps3av_probe(struct ps3_system_bus_device *dev) +static int ps3av_probe(struct ps3_system_bus_device *dev)  {  	int res;  	int id; diff --git a/drivers/ps3/ps3stor_lib.c b/drivers/ps3/ps3stor_lib.c index af0afa1db4a..8c3f5adf1bc 100644 --- a/drivers/ps3/ps3stor_lib.c +++ b/drivers/ps3/ps3stor_lib.c @@ -19,6 +19,7 @@   */  #include <linux/dma-mapping.h> +#include <linux/module.h>  #include <asm/lv1call.h>  #include <asm/ps3stor.h> @@ -166,7 +167,7 @@ int ps3stor_setup(struct ps3_storage_device *dev, irq_handler_t handler)  		goto fail_close_device;  	} -	error = request_irq(dev->irq, handler, IRQF_DISABLED, +	error = request_irq(dev->irq, handler, 0,  			    dev->sbd.core.driver->name, dev);  	if (error) {  		dev_err(&dev->sbd.core, "%s:%u: request_irq failed %d\n", diff --git a/drivers/ps3/sys-manager-core.c b/drivers/ps3/sys-manager-core.c index 474225852b6..0e41737ea83 100644 --- a/drivers/ps3/sys-manager-core.c +++ b/drivers/ps3/sys-manager-core.c @@ -19,6 +19,7 @@   */  #include <linux/kernel.h> +#include <linux/export.h>  #include <asm/lv1call.h>  #include <asm/ps3.h>  | 
