All of lore.kernel.org
 help / color / mirror / Atom feed
* [ath9k-devel] [PATCH] ath10k: fix HW version/revision names
@ 2013-04-19  6:50 Bartosz Markowski
  2013-04-19  8:04 ` Michal Kazior
  0 siblings, 1 reply; 4+ messages in thread
From: Bartosz Markowski @ 2013-04-19  6:50 UTC (permalink / raw)
  To: ath9k-devel

In this patch only the string values we print
during hw_params initialization.

Signed-off-by: Bartosz Markowski <bartosz.markowski@tieto.com>
---
 drivers/net/wireless/ath/ath10k/core.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/wireless/ath/ath10k/core.c b/drivers/net/wireless/ath/ath10k/core.c
index 8cbdc04..c53c4c6 100644
--- a/drivers/net/wireless/ath/ath10k/core.c
+++ b/drivers/net/wireless/ath/ath10k/core.c
@@ -46,7 +46,7 @@ enum ath10k_file {
 static const struct ath10k_hw_params ath10k_hw_params_list[] = {
 	{
 		.id = AR9888_HW_1_0_VERSION,
-		.name = "ar9888 rev1 (build 44)",
+		.name = "qca9880 hw1.0",
 		.patch_load_addr = AR9888_HW_1_0_PATCH_LOAD_ADDR,
 		.fw = {
 			.dir = AR9888_HW_1_0_FW_DIR,
@@ -57,7 +57,7 @@ static const struct ath10k_hw_params ath10k_hw_params_list[] = {
 	},
 	{
 		.id = AR9888_HW_2_0_VERSION,
-		.name = "ar9888 rev2 (build 348)",
+		.name = "qca9880 hw2.0",
 		.patch_load_addr = AR9888_HW_2_0_PATCH_LOAD_ADDR,
 		.fw = {
 			.dir = AR9888_HW_2_0_FW_DIR,
-- 
1.7.10

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

* [ath9k-devel] [PATCH] ath10k: fix HW version/revision names
  2013-04-19  6:50 [ath9k-devel] [PATCH] ath10k: fix HW version/revision names Bartosz Markowski
@ 2013-04-19  8:04 ` Michal Kazior
  2013-04-19  8:27   ` Sujith Manoharan
  0 siblings, 1 reply; 4+ messages in thread
From: Michal Kazior @ 2013-04-19  8:04 UTC (permalink / raw)
  To: ath9k-devel

On 19/04/13 08:50, Bartosz Markowski wrote:
> In this patch only the string values we print
> during hw_params initialization.
>
> Signed-off-by: Bartosz Markowski <bartosz.markowski@tieto.com>
> ---
>   drivers/net/wireless/ath/ath10k/core.c |    4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/wireless/ath/ath10k/core.c b/drivers/net/wireless/ath/ath10k/core.c
> index 8cbdc04..c53c4c6 100644
> --- a/drivers/net/wireless/ath/ath10k/core.c
> +++ b/drivers/net/wireless/ath/ath10k/core.c
> @@ -46,7 +46,7 @@ enum ath10k_file {
>   static const struct ath10k_hw_params ath10k_hw_params_list[] = {
>   	{
>   		.id = AR9888_HW_1_0_VERSION,
> -		.name = "ar9888 rev1 (build 44)",
> +		.name = "qca9880 hw1.0",

Is it 9888 or is it 9880?


-- Pozdrawiam / Best regards, Michal Kazior.

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

* [ath9k-devel] [PATCH] ath10k: fix HW version/revision names
  2013-04-19  8:04 ` Michal Kazior
@ 2013-04-19  8:27   ` Sujith Manoharan
  2013-04-22  8:50     ` Kalle Valo
  0 siblings, 1 reply; 4+ messages in thread
From: Sujith Manoharan @ 2013-04-19  8:27 UTC (permalink / raw)
  To: ath9k-devel

Michal Kazior wrote:
> >   static const struct ath10k_hw_params ath10k_hw_params_list[] = {
> >   	{
> >   		.id = AR9888_HW_1_0_VERSION,
> > -		.name = "ar9888 rev1 (build 44)",
> > +		.name = "qca9880 hw1.0",
> 
> Is it 9888 or is it 9880?

Both actually. QCA9888 is the chip part for the computing cards
and QCA9880 is for Access Points.

Maybe we can have QCA988x.

Sujith

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

* [ath9k-devel] [PATCH] ath10k: fix HW version/revision names
  2013-04-19  8:27   ` Sujith Manoharan
@ 2013-04-22  8:50     ` Kalle Valo
  0 siblings, 0 replies; 4+ messages in thread
From: Kalle Valo @ 2013-04-22  8:50 UTC (permalink / raw)
  To: ath9k-devel

Sujith Manoharan <sujith@msujith.org> writes:

> Michal Kazior wrote:
>> >   static const struct ath10k_hw_params ath10k_hw_params_list[] = {
>> >   	{
>> >   		.id = AR9888_HW_1_0_VERSION,
>> > -		.name = "ar9888 rev1 (build 44)",
>> > +		.name = "qca9880 hw1.0",
>> 
>> Is it 9888 or is it 9880?
>
> Both actually. QCA9888 is the chip part for the computing cards
> and QCA9880 is for Access Points.
>
> Maybe we can have QCA988x.

Yeah, qca988x is a good choise.

-- 
Kalle Valo

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

end of thread, other threads:[~2013-04-22  8:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-19  6:50 [ath9k-devel] [PATCH] ath10k: fix HW version/revision names Bartosz Markowski
2013-04-19  8:04 ` Michal Kazior
2013-04-19  8:27   ` Sujith Manoharan
2013-04-22  8:50     ` Kalle Valo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.