linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/7] fix typo
@ 2016-05-17 14:38 Julia Lawall
  2016-05-17 14:38 ` [PATCH 2/7] [media] mn88473: " Julia Lawall
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Julia Lawall @ 2016-05-17 14:38 UTC (permalink / raw)
  To: netdev
  Cc: kernel-janitors, linux-wireless, linux-media, linux-kernel,
	linux-scsi, devel, pmchba

firmare -> firmware

---

 drivers/media/dvb-frontends/mn88473.c       |    2 +-
 drivers/net/wireless/ath/ath6kl/core.h      |    2 +-
 drivers/net/wireless/marvell/mwifiex/pcie.c |    2 +-
 drivers/scsi/pm8001/pm8001_init.c           |    2 +-
 drivers/scsi/snic/snic_fwint.h              |    2 +-
 drivers/staging/media/mn88472/mn88472.c     |    2 +-
 drivers/staging/wilc1000/linux_wlan.c       |    2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

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

* [PATCH 2/7] [media] mn88473: fix typo
  2016-05-17 14:38 [PATCH 0/7] fix typo Julia Lawall
@ 2016-05-17 14:38 ` Julia Lawall
  2016-05-17 14:38 ` [PATCH 3/7] [media] mn88472: " Julia Lawall
  2016-05-17 15:07 ` [PATCH 0/7] " Kalle Valo
  2 siblings, 0 replies; 6+ messages in thread
From: Julia Lawall @ 2016-05-17 14:38 UTC (permalink / raw)
  To: Antti Palosaari
  Cc: kernel-janitors, Mauro Carvalho Chehab, linux-media, linux-kernel

firmare -> firmware

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>

---
 drivers/media/dvb-frontends/mn88473.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/dvb-frontends/mn88473.c b/drivers/media/dvb-frontends/mn88473.c
index 6c5d5921..8f7b68f 100644
--- a/drivers/media/dvb-frontends/mn88473.c
+++ b/drivers/media/dvb-frontends/mn88473.c
@@ -330,7 +330,7 @@ static int mn88473_init(struct dvb_frontend *fe)
 	/* Request the firmware, this will block and timeout */
 	ret = request_firmware(&fw, name, &client->dev);
 	if (ret) {
-		dev_err(&client->dev, "firmare file '%s' not found\n", name);
+		dev_err(&client->dev, "firmware file '%s' not found\n", name);
 		goto err;
 	}
 


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

* [PATCH 3/7] [media] mn88472: fix typo
  2016-05-17 14:38 [PATCH 0/7] fix typo Julia Lawall
  2016-05-17 14:38 ` [PATCH 2/7] [media] mn88473: " Julia Lawall
@ 2016-05-17 14:38 ` Julia Lawall
  2016-05-17 15:07 ` [PATCH 0/7] " Kalle Valo
  2 siblings, 0 replies; 6+ messages in thread
From: Julia Lawall @ 2016-05-17 14:38 UTC (permalink / raw)
  To: Antti Palosaari
  Cc: kernel-janitors, Mauro Carvalho Chehab, Greg Kroah-Hartman,
	linux-media, devel, linux-kernel

firmare -> firmware

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>

---
 drivers/staging/media/mn88472/mn88472.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/media/mn88472/mn88472.c b/drivers/staging/media/mn88472/mn88472.c
index 7ea749c..5cfa22a 100644
--- a/drivers/staging/media/mn88472/mn88472.c
+++ b/drivers/staging/media/mn88472/mn88472.c
@@ -312,7 +312,7 @@ static int mn88472_init(struct dvb_frontend *fe)
 	/* request the firmware, this will block and timeout */
 	ret = request_firmware(&fw, fw_file, &client->dev);
 	if (ret) {
-		dev_err(&client->dev, "firmare file '%s' not found\n",
+		dev_err(&client->dev, "firmware file '%s' not found\n",
 				fw_file);
 		goto err;
 	}


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

* Re: [PATCH 0/7] fix typo
  2016-05-17 14:38 [PATCH 0/7] fix typo Julia Lawall
  2016-05-17 14:38 ` [PATCH 2/7] [media] mn88473: " Julia Lawall
  2016-05-17 14:38 ` [PATCH 3/7] [media] mn88472: " Julia Lawall
@ 2016-05-17 15:07 ` Kalle Valo
  2016-05-17 15:08   ` Julia Lawall
  2 siblings, 1 reply; 6+ messages in thread
From: Kalle Valo @ 2016-05-17 15:07 UTC (permalink / raw)
  To: Julia Lawall
  Cc: netdev, kernel-janitors, linux-wireless, linux-media,
	linux-kernel, linux-scsi, devel, pmchba

Julia Lawall <Julia.Lawall@lip6.fr> writes:

> firmare -> firmware
>
> ---
>
>  drivers/media/dvb-frontends/mn88473.c       |    2 +-
>  drivers/net/wireless/ath/ath6kl/core.h      |    2 +-
>  drivers/net/wireless/marvell/mwifiex/pcie.c |    2 +-

It would be good to know in advance what tree you are planning to submit
these for. For example, should I take ath6kl and mwifiex patches or
someone else?

-- 
Kalle Valo

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

* Re: [PATCH 0/7] fix typo
  2016-05-17 15:07 ` [PATCH 0/7] " Kalle Valo
@ 2016-05-17 15:08   ` Julia Lawall
  2016-05-17 15:19     ` Kalle Valo
  0 siblings, 1 reply; 6+ messages in thread
From: Julia Lawall @ 2016-05-17 15:08 UTC (permalink / raw)
  To: Kalle Valo
  Cc: netdev, kernel-janitors, linux-wireless, linux-media,
	linux-kernel, linux-scsi, devel, pmchba



On Tue, 17 May 2016, Kalle Valo wrote:

> Julia Lawall <Julia.Lawall@lip6.fr> writes:
>
> > firmare -> firmware
> >
> > ---
> >
> >  drivers/media/dvb-frontends/mn88473.c       |    2 +-
> >  drivers/net/wireless/ath/ath6kl/core.h      |    2 +-
> >  drivers/net/wireless/marvell/mwifiex/pcie.c |    2 +-
>
> It would be good to know in advance what tree you are planning to submit
> these for. For example, should I take ath6kl and mwifiex patches or
> someone else?

I have no preference.  They are all independent in any case.

julia

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

* Re: [PATCH 0/7] fix typo
  2016-05-17 15:08   ` Julia Lawall
@ 2016-05-17 15:19     ` Kalle Valo
  0 siblings, 0 replies; 6+ messages in thread
From: Kalle Valo @ 2016-05-17 15:19 UTC (permalink / raw)
  To: Julia Lawall
  Cc: netdev, kernel-janitors, linux-wireless, linux-media,
	linux-kernel, linux-scsi, devel, pmchba

Julia Lawall <julia.lawall@lip6.fr> writes:

> On Tue, 17 May 2016, Kalle Valo wrote:
>
>> Julia Lawall <Julia.Lawall@lip6.fr> writes:
>>
>> > firmare -> firmware
>> >
>> > ---
>> >
>> >  drivers/media/dvb-frontends/mn88473.c       |    2 +-
>> >  drivers/net/wireless/ath/ath6kl/core.h      |    2 +-
>> >  drivers/net/wireless/marvell/mwifiex/pcie.c |    2 +-
>>
>> It would be good to know in advance what tree you are planning to submit
>> these for. For example, should I take ath6kl and mwifiex patches or
>> someone else?
>
> I have no preference.  They are all independent in any case.

Ok, I'll then take the ath6kl and mwifiex patches.

-- 
Kalle Valo

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

end of thread, other threads:[~2016-05-17 15:19 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-17 14:38 [PATCH 0/7] fix typo Julia Lawall
2016-05-17 14:38 ` [PATCH 2/7] [media] mn88473: " Julia Lawall
2016-05-17 14:38 ` [PATCH 3/7] [media] mn88472: " Julia Lawall
2016-05-17 15:07 ` [PATCH 0/7] " Kalle Valo
2016-05-17 15:08   ` Julia Lawall
2016-05-17 15:19     ` Kalle Valo

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).