linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] [trivial] media: Fix typo in mixer_drv.c and hdmi_drv.c
@ 2012-01-29 12:50 Masanari Iida
  2012-01-30  5:43 ` Kyungmin Park
  0 siblings, 1 reply; 3+ messages in thread
From: Masanari Iida @ 2012-01-29 12:50 UTC (permalink / raw)
  To: kyungmin.park, linux-arm-kernel
  Cc: linux-kernel, trivial, standby24x7, linux-media

Correct typo "sucessful" to "successful" in
drivers/media/video/s5p-tv/mixer_drv.c
drivers/media/video/s5p-tv/hdmi_drv.c

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
---
 drivers/media/video/s5p-tv/hdmi_drv.c  |    4 ++--
 drivers/media/video/s5p-tv/mixer_drv.c |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/media/video/s5p-tv/hdmi_drv.c b/drivers/media/video/s5p-tv/hdmi_drv.c
index 8b41a04..3e0dd09 100644
--- a/drivers/media/video/s5p-tv/hdmi_drv.c
+++ b/drivers/media/video/s5p-tv/hdmi_drv.c
@@ -962,7 +962,7 @@ static int __devinit hdmi_probe(struct platform_device *pdev)
 	/* storing subdev for call that have only access to struct device */
 	dev_set_drvdata(dev, sd);
 
-	dev_info(dev, "probe sucessful\n");
+	dev_info(dev, "probe successful\n");
 
 	return 0;
 
@@ -1000,7 +1000,7 @@ static int __devexit hdmi_remove(struct platform_device *pdev)
 	iounmap(hdmi_dev->regs);
 	hdmi_resources_cleanup(hdmi_dev);
 	kfree(hdmi_dev);
-	dev_info(dev, "remove sucessful\n");
+	dev_info(dev, "remove successful\n");
 
 	return 0;
 }
diff --git a/drivers/media/video/s5p-tv/mixer_drv.c b/drivers/media/video/s5p-tv/mixer_drv.c
index 0064309..a2c0c25 100644
--- a/drivers/media/video/s5p-tv/mixer_drv.c
+++ b/drivers/media/video/s5p-tv/mixer_drv.c
@@ -444,7 +444,7 @@ static int __devexit mxr_remove(struct platform_device *pdev)
 
 	kfree(mdev);
 
-	dev_info(dev, "remove sucessful\n");
+	dev_info(dev, "remove successful\n");
 	return 0;
 }
 
-- 
1.7.6.5


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] [trivial] media: Fix typo in mixer_drv.c and hdmi_drv.c
  2012-01-29 12:50 [PATCH] [trivial] media: Fix typo in mixer_drv.c and hdmi_drv.c Masanari Iida
@ 2012-01-30  5:43 ` Kyungmin Park
  2012-02-03 22:17   ` Jiri Kosina
  0 siblings, 1 reply; 3+ messages in thread
From: Kyungmin Park @ 2012-01-30  5:43 UTC (permalink / raw)
  To: Masanari Iida, Marek Szyprowski, Tomasz Stanislawski
  Cc: linux-arm-kernel, linux-kernel, trivial, linux-media

Acked-by: Kyungmin Park <kyungmin.park@samsung.com>

On 1/29/12, Masanari Iida <standby24x7@gmail.com> wrote:
> Correct typo "sucessful" to "successful" in
> drivers/media/video/s5p-tv/mixer_drv.c
> drivers/media/video/s5p-tv/hdmi_drv.c
>
> Signed-off-by: Masanari Iida <standby24x7@gmail.com>
> ---
>  drivers/media/video/s5p-tv/hdmi_drv.c  |    4 ++--
>  drivers/media/video/s5p-tv/mixer_drv.c |    2 +-
>  2 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/media/video/s5p-tv/hdmi_drv.c
> b/drivers/media/video/s5p-tv/hdmi_drv.c
> index 8b41a04..3e0dd09 100644
> --- a/drivers/media/video/s5p-tv/hdmi_drv.c
> +++ b/drivers/media/video/s5p-tv/hdmi_drv.c
> @@ -962,7 +962,7 @@ static int __devinit hdmi_probe(struct platform_device
> *pdev)
>  	/* storing subdev for call that have only access to struct device */
>  	dev_set_drvdata(dev, sd);
>
> -	dev_info(dev, "probe sucessful\n");
> +	dev_info(dev, "probe successful\n");
>
>  	return 0;
>
> @@ -1000,7 +1000,7 @@ static int __devexit hdmi_remove(struct
> platform_device *pdev)
>  	iounmap(hdmi_dev->regs);
>  	hdmi_resources_cleanup(hdmi_dev);
>  	kfree(hdmi_dev);
> -	dev_info(dev, "remove sucessful\n");
> +	dev_info(dev, "remove successful\n");
>
>  	return 0;
>  }
> diff --git a/drivers/media/video/s5p-tv/mixer_drv.c
> b/drivers/media/video/s5p-tv/mixer_drv.c
> index 0064309..a2c0c25 100644
> --- a/drivers/media/video/s5p-tv/mixer_drv.c
> +++ b/drivers/media/video/s5p-tv/mixer_drv.c
> @@ -444,7 +444,7 @@ static int __devexit mxr_remove(struct platform_device
> *pdev)
>
>  	kfree(mdev);
>
> -	dev_info(dev, "remove sucessful\n");
> +	dev_info(dev, "remove successful\n");
>  	return 0;
>  }
>
> --
> 1.7.6.5
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] [trivial] media: Fix typo in mixer_drv.c and hdmi_drv.c
  2012-01-30  5:43 ` Kyungmin Park
@ 2012-02-03 22:17   ` Jiri Kosina
  0 siblings, 0 replies; 3+ messages in thread
From: Jiri Kosina @ 2012-02-03 22:17 UTC (permalink / raw)
  To: Kyungmin Park
  Cc: Masanari Iida, Marek Szyprowski, Tomasz Stanislawski,
	linux-arm-kernel, linux-kernel, linux-media

On Mon, 30 Jan 2012, Kyungmin Park wrote:

> Acked-by: Kyungmin Park <kyungmin.park@samsung.com>

Applied, thanks.

> > Correct typo "sucessful" to "successful" in
> > drivers/media/video/s5p-tv/mixer_drv.c
> > drivers/media/video/s5p-tv/hdmi_drv.c
> >
> > Signed-off-by: Masanari Iida <standby24x7@gmail.com>
> > ---
> >  drivers/media/video/s5p-tv/hdmi_drv.c  |    4 ++--
> >  drivers/media/video/s5p-tv/mixer_drv.c |    2 +-
> >  2 files changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/media/video/s5p-tv/hdmi_drv.c
> > b/drivers/media/video/s5p-tv/hdmi_drv.c
> > index 8b41a04..3e0dd09 100644
> > --- a/drivers/media/video/s5p-tv/hdmi_drv.c
> > +++ b/drivers/media/video/s5p-tv/hdmi_drv.c
> > @@ -962,7 +962,7 @@ static int __devinit hdmi_probe(struct platform_device
> > *pdev)
> >  	/* storing subdev for call that have only access to struct device */
> >  	dev_set_drvdata(dev, sd);
> >
> > -	dev_info(dev, "probe sucessful\n");
> > +	dev_info(dev, "probe successful\n");
> >
> >  	return 0;
> >
> > @@ -1000,7 +1000,7 @@ static int __devexit hdmi_remove(struct
> > platform_device *pdev)
> >  	iounmap(hdmi_dev->regs);
> >  	hdmi_resources_cleanup(hdmi_dev);
> >  	kfree(hdmi_dev);
> > -	dev_info(dev, "remove sucessful\n");
> > +	dev_info(dev, "remove successful\n");
> >
> >  	return 0;
> >  }
> > diff --git a/drivers/media/video/s5p-tv/mixer_drv.c
> > b/drivers/media/video/s5p-tv/mixer_drv.c
> > index 0064309..a2c0c25 100644
> > --- a/drivers/media/video/s5p-tv/mixer_drv.c
> > +++ b/drivers/media/video/s5p-tv/mixer_drv.c
> > @@ -444,7 +444,7 @@ static int __devexit mxr_remove(struct platform_device
> > *pdev)
> >
> >  	kfree(mdev);
> >
> > -	dev_info(dev, "remove sucessful\n");
> > +	dev_info(dev, "remove successful\n");
> >  	return 0;
> >  }

-- 
Jiri Kosina
SUSE Labs

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-02-03 22:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-29 12:50 [PATCH] [trivial] media: Fix typo in mixer_drv.c and hdmi_drv.c Masanari Iida
2012-01-30  5:43 ` Kyungmin Park
2012-02-03 22:17   ` Jiri Kosina

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).