linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: hns: update the dependency
@ 2016-06-13  8:56 Yisen Zhuang
  0 siblings, 0 replies; 7+ messages in thread
From: Yisen Zhuang @ 2016-06-13  8:56 UTC (permalink / raw)
  To: davem, arnd, paul.gortmaker, k.kozlowski, geert
  Cc: charles.chenxin, netdev, linux-kernel

From: Kejian Yan <yankejian@huawei.com>

After the patchset about adding support of ACPI (commit id is 6343488)
being applied, HNS does not depend on OF. It depends on OF or ACPI, so
the Kconfig file needs to be updated.

Signed-off-by: Kejian Yan <yankejian@huawei.com>
Signed-off-by: Yisen Zhuang <Yisen.Zhuang@huawei.com>
---
 drivers/net/ethernet/hisilicon/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/hisilicon/Kconfig b/drivers/net/ethernet/hisilicon/Kconfig
index 4ccc032..2e25662 100644
--- a/drivers/net/ethernet/hisilicon/Kconfig
+++ b/drivers/net/ethernet/hisilicon/Kconfig
@@ -5,7 +5,7 @@
 config NET_VENDOR_HISILICON
 	bool "Hisilicon devices"
 	default y
-	depends on OF && HAS_DMA
+	depends on (OF || ACPI) && HAS_DMA
 	depends on ARM || ARM64 || COMPILE_TEST
 	---help---
 	  If you have a network (Ethernet) card belonging to this class, say Y.
-- 
1.9.1

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

* Re: [PATCH] net: hns: update the dependency
  2016-06-15  6:24     ` David Miller
@ 2016-06-15  7:34       ` Yisen Zhuang
  0 siblings, 0 replies; 7+ messages in thread
From: Yisen Zhuang @ 2016-06-15  7:34 UTC (permalink / raw)
  To: David Miller; +Cc: arnd, charles.chenxin, netdev, linux-kernel, linuxarm

Hi David,

I'm really sorry for this.

Because i didn't receive the first two emails, i resented it a few times.

I will pay more attention next time.

Thanks,

Yisen

在 2016/6/15 14:24, David Miller 写道:
> From: Yisen Zhuang <Yisen.zhuang@huawei.com>
> Date: Wed, 15 Jun 2016 14:03:33 +0800
> 
>> Hi David,
>>
>> You mean that i send this patch 3 times?
>>
>> I am sorry for this.
>>
>> I don't know why you can receive 3 times. I can only receive an email for this patch.
> 
> I got three copies, each with a different Date: field.
> 
> patchwork saw all 3 copies as well:
> 
> http://patchwork.ozlabs.org/patch/634452/
> http://patchwork.ozlabs.org/patch/634559/
> http://patchwork.ozlabs.org/patch/634586/
> 
> .
> 

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

* Re: [PATCH] net: hns: update the dependency
  2016-06-15  6:03   ` Yisen Zhuang
@ 2016-06-15  6:24     ` David Miller
  2016-06-15  7:34       ` Yisen Zhuang
  0 siblings, 1 reply; 7+ messages in thread
From: David Miller @ 2016-06-15  6:24 UTC (permalink / raw)
  To: Yisen.zhuang; +Cc: arnd, charles.chenxin, netdev, linux-kernel, linuxarm

From: Yisen Zhuang <Yisen.zhuang@huawei.com>
Date: Wed, 15 Jun 2016 14:03:33 +0800

> Hi David,
> 
> You mean that i send this patch 3 times?
> 
> I am sorry for this.
> 
> I don't know why you can receive 3 times. I can only receive an email for this patch.

I got three copies, each with a different Date: field.

patchwork saw all 3 copies as well:

http://patchwork.ozlabs.org/patch/634452/
http://patchwork.ozlabs.org/patch/634559/
http://patchwork.ozlabs.org/patch/634586/

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

* Re: [PATCH] net: hns: update the dependency
  2016-06-15  5:26 ` David Miller
@ 2016-06-15  6:03   ` Yisen Zhuang
  2016-06-15  6:24     ` David Miller
  0 siblings, 1 reply; 7+ messages in thread
From: Yisen Zhuang @ 2016-06-15  6:03 UTC (permalink / raw)
  To: David Miller; +Cc: arnd, charles.chenxin, netdev, linux-kernel, linuxarm

Hi David,

You mean that i send this patch 3 times?

I am sorry for this.

I don't know why you can receive 3 times. I can only receive an email for this patch.

Thanks,

Yisen

在 2016/6/15 13:26, David Miller 写道:
> From: Yisen Zhuang <Yisen.Zhuang@huawei.com>
> Date: Mon, 13 Jun 2016 19:56:27 +0800
> 
>> From: Kejian Yan <yankejian@huawei.com>
>>
>> After the patchset about adding support of ACPI (commit id is 6343488)
>> being applied, HNS does not depend on OF. It depends on OF or ACPI, so
>> the Kconfig file needs to be updated.
>>
>> Signed-off-by: Kejian Yan <yankejian@huawei.com>
>> Signed-off-by: Yisen Zhuang <Yisen.Zhuang@huawei.com>
> 
> Why did you submit this same exact patch 3 times?
> 
> .
> 

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

* Re: [PATCH] net: hns: update the dependency
  2016-06-13 11:56 Yisen Zhuang
@ 2016-06-15  5:26 ` David Miller
  2016-06-15  6:03   ` Yisen Zhuang
  0 siblings, 1 reply; 7+ messages in thread
From: David Miller @ 2016-06-15  5:26 UTC (permalink / raw)
  To: Yisen.Zhuang; +Cc: arnd, charles.chenxin, netdev, linux-kernel, linuxarm

From: Yisen Zhuang <Yisen.Zhuang@huawei.com>
Date: Mon, 13 Jun 2016 19:56:27 +0800

> From: Kejian Yan <yankejian@huawei.com>
> 
> After the patchset about adding support of ACPI (commit id is 6343488)
> being applied, HNS does not depend on OF. It depends on OF or ACPI, so
> the Kconfig file needs to be updated.
> 
> Signed-off-by: Kejian Yan <yankejian@huawei.com>
> Signed-off-by: Yisen Zhuang <Yisen.Zhuang@huawei.com>

Why did you submit this same exact patch 3 times?

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

* [PATCH] net: hns: update the dependency
@ 2016-06-13 11:56 Yisen Zhuang
  2016-06-15  5:26 ` David Miller
  0 siblings, 1 reply; 7+ messages in thread
From: Yisen Zhuang @ 2016-06-13 11:56 UTC (permalink / raw)
  To: davem, arnd; +Cc: charles.chenxin, netdev, linux-kernel, linuxarm

From: Kejian Yan <yankejian@huawei.com>

After the patchset about adding support of ACPI (commit id is 6343488)
being applied, HNS does not depend on OF. It depends on OF or ACPI, so
the Kconfig file needs to be updated.

Signed-off-by: Kejian Yan <yankejian@huawei.com>
Signed-off-by: Yisen Zhuang <Yisen.Zhuang@huawei.com>
---
 drivers/net/ethernet/hisilicon/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/hisilicon/Kconfig b/drivers/net/ethernet/hisilicon/Kconfig
index 4ccc032..2e25662 100644
--- a/drivers/net/ethernet/hisilicon/Kconfig
+++ b/drivers/net/ethernet/hisilicon/Kconfig
@@ -5,7 +5,7 @@
 config NET_VENDOR_HISILICON
 	bool "Hisilicon devices"
 	default y
-	depends on OF && HAS_DMA
+	depends on (OF || ACPI) && HAS_DMA
 	depends on ARM || ARM64 || COMPILE_TEST
 	---help---
 	  If you have a network (Ethernet) card belonging to this class, say Y.
-- 
1.9.1

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

* [PATCH] net: hns: update the dependency
@ 2016-06-13 11:33 Yisen Zhuang
  0 siblings, 0 replies; 7+ messages in thread
From: Yisen Zhuang @ 2016-06-13 11:33 UTC (permalink / raw)
  To: davem, arnd, paul.gortmaker, k.kozlowski, geert
  Cc: charles.chenxin, netdev, linux-kernel

From: Kejian Yan <yankejian@huawei.com>

After the patchset about adding support of ACPI (commit id is 6343488)
being applied, HNS does not depend on OF. It depends on OF or ACPI, so
the Kconfig file needs to be updated.

Signed-off-by: Kejian Yan <yankejian@huawei.com>
Signed-off-by: Yisen Zhuang <Yisen.Zhuang@huawei.com>
---
 drivers/net/ethernet/hisilicon/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/hisilicon/Kconfig b/drivers/net/ethernet/hisilicon/Kconfig
index 4ccc032..2e25662 100644
--- a/drivers/net/ethernet/hisilicon/Kconfig
+++ b/drivers/net/ethernet/hisilicon/Kconfig
@@ -5,7 +5,7 @@
 config NET_VENDOR_HISILICON
 	bool "Hisilicon devices"
 	default y
-	depends on OF && HAS_DMA
+	depends on (OF || ACPI) && HAS_DMA
 	depends on ARM || ARM64 || COMPILE_TEST
 	---help---
 	  If you have a network (Ethernet) card belonging to this class, say Y.
-- 
1.9.1

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

end of thread, other threads:[~2016-06-15  7:34 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-13  8:56 [PATCH] net: hns: update the dependency Yisen Zhuang
2016-06-13 11:33 Yisen Zhuang
2016-06-13 11:56 Yisen Zhuang
2016-06-15  5:26 ` David Miller
2016-06-15  6:03   ` Yisen Zhuang
2016-06-15  6:24     ` David Miller
2016-06-15  7:34       ` Yisen Zhuang

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