From: Niklas Cassel <niklas.cassel@linaro.org>
To: Kalle Valo <kvalo@codeaurora.org>
Cc: Govind Singh <govinds@codeaurora.org>,
kernel-janitors@vger.kernel.org, linux-wireless@vger.kernel.org,
ath10k@lists.infradead.org, bjorn.andersson@linaro.org,
Wei Yongjun <weiyongjun1@huawei.com>
Subject: Re: [PATCH net-next] ath10k: make some functions static
Date: Mon, 4 Jun 2018 14:04:00 +0200 [thread overview]
Message-ID: <20180604120400.GA6240@centauri.lan> (raw)
In-Reply-To: <87a7sazw0w.fsf@kamboji.qca.qualcomm.com>
On Mon, Jun 04, 2018 at 01:27:43PM +0300, Kalle Valo wrote:
> Wei Yongjun <weiyongjun1@huawei.com> writes:
>
> > Fixes the following sparse warnings:
> >
> > drivers/net/wireless/ath/ath10k/snoc.c:823:5: warning:
> > symbol 'ath10k_snoc_get_ce_id_from_irq' was not declared. Should it be static?
> > drivers/net/wireless/ath/ath10k/snoc.c:871:6: warning:
> > symbol 'ath10k_snoc_init_napi' was not declared. Should it be static?
> >
> > Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
>
> BTW this goes to my ath.git tree, not to net-next.
>
> I had missed these as I can't enable ATH10K_SNOC on x86 and hence I
> don't test compile snoc.c at all. Bjorn&Govind, is there a way to solve
> that? IIRC we had a similar problem with wcn36xx but I don't remember
> anymore how it was fixed.
>
Perhaps something like:
--- a/drivers/net/wireless/ath/ath10k/Kconfig
+++ b/drivers/net/wireless/ath/ath10k/Kconfig
@@ -42,7 +42,8 @@ config ATH10K_USB
config ATH10K_SNOC
tristate "Qualcomm ath10k SNOC support (EXPERIMENTAL)"
- depends on ATH10K && ARCH_QCOM
+ depends on ATH10K
+ depends on ARCH_QCOM || COMPILE_TEST
---help---
This module adds support for integrated WCN3990 chip connected
to system NOC(SNOC). Currently work in progress and will not
Regards,
Niklas
> --
> Kalle Valo
>
> _______________________________________________
> ath10k mailing list
> ath10k@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/ath10k
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k
WARNING: multiple messages have this Message-ID (diff)
From: Niklas Cassel <niklas.cassel@linaro.org>
To: Kalle Valo <kvalo@codeaurora.org>
Cc: Govind Singh <govinds@codeaurora.org>,
kernel-janitors@vger.kernel.org, linux-wireless@vger.kernel.org,
ath10k@lists.infradead.org, bjorn.andersson@linaro.org,
Wei Yongjun <weiyongjun1@huawei.com>
Subject: Re: [PATCH net-next] ath10k: make some functions static
Date: Mon, 04 Jun 2018 12:04:00 +0000 [thread overview]
Message-ID: <20180604120400.GA6240@centauri.lan> (raw)
In-Reply-To: <87a7sazw0w.fsf@kamboji.qca.qualcomm.com>
On Mon, Jun 04, 2018 at 01:27:43PM +0300, Kalle Valo wrote:
> Wei Yongjun <weiyongjun1@huawei.com> writes:
>
> > Fixes the following sparse warnings:
> >
> > drivers/net/wireless/ath/ath10k/snoc.c:823:5: warning:
> > symbol 'ath10k_snoc_get_ce_id_from_irq' was not declared. Should it be static?
> > drivers/net/wireless/ath/ath10k/snoc.c:871:6: warning:
> > symbol 'ath10k_snoc_init_napi' was not declared. Should it be static?
> >
> > Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
>
> BTW this goes to my ath.git tree, not to net-next.
>
> I had missed these as I can't enable ATH10K_SNOC on x86 and hence I
> don't test compile snoc.c at all. Bjorn&Govind, is there a way to solve
> that? IIRC we had a similar problem with wcn36xx but I don't remember
> anymore how it was fixed.
>
Perhaps something like:
--- a/drivers/net/wireless/ath/ath10k/Kconfig
+++ b/drivers/net/wireless/ath/ath10k/Kconfig
@@ -42,7 +42,8 @@ config ATH10K_USB
config ATH10K_SNOC
tristate "Qualcomm ath10k SNOC support (EXPERIMENTAL)"
- depends on ATH10K && ARCH_QCOM
+ depends on ATH10K
+ depends on ARCH_QCOM || COMPILE_TEST
---help---
This module adds support for integrated WCN3990 chip connected
to system NOC(SNOC). Currently work in progress and will not
Regards,
Niklas
> --
> Kalle Valo
>
> _______________________________________________
> ath10k mailing list
> ath10k@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/ath10k
WARNING: multiple messages have this Message-ID (diff)
From: Niklas Cassel <niklas.cassel@linaro.org>
To: Kalle Valo <kvalo@codeaurora.org>
Cc: Wei Yongjun <weiyongjun1@huawei.com>,
kernel-janitors@vger.kernel.org,
Govind Singh <govinds@codeaurora.org>,
linux-wireless@vger.kernel.org, ath10k@lists.infradead.org,
bjorn.andersson@linaro.org
Subject: Re: [PATCH net-next] ath10k: make some functions static
Date: Mon, 4 Jun 2018 14:04:00 +0200 [thread overview]
Message-ID: <20180604120400.GA6240@centauri.lan> (raw)
In-Reply-To: <87a7sazw0w.fsf@kamboji.qca.qualcomm.com>
On Mon, Jun 04, 2018 at 01:27:43PM +0300, Kalle Valo wrote:
> Wei Yongjun <weiyongjun1@huawei.com> writes:
>
> > Fixes the following sparse warnings:
> >
> > drivers/net/wireless/ath/ath10k/snoc.c:823:5: warning:
> > symbol 'ath10k_snoc_get_ce_id_from_irq' was not declared. Should it be static?
> > drivers/net/wireless/ath/ath10k/snoc.c:871:6: warning:
> > symbol 'ath10k_snoc_init_napi' was not declared. Should it be static?
> >
> > Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
>
> BTW this goes to my ath.git tree, not to net-next.
>
> I had missed these as I can't enable ATH10K_SNOC on x86 and hence I
> don't test compile snoc.c at all. Bjorn&Govind, is there a way to solve
> that? IIRC we had a similar problem with wcn36xx but I don't remember
> anymore how it was fixed.
>
Perhaps something like:
--- a/drivers/net/wireless/ath/ath10k/Kconfig
+++ b/drivers/net/wireless/ath/ath10k/Kconfig
@@ -42,7 +42,8 @@ config ATH10K_USB
config ATH10K_SNOC
tristate "Qualcomm ath10k SNOC support (EXPERIMENTAL)"
- depends on ATH10K && ARCH_QCOM
+ depends on ATH10K
+ depends on ARCH_QCOM || COMPILE_TEST
---help---
This module adds support for integrated WCN3990 chip connected
to system NOC(SNOC). Currently work in progress and will not
Regards,
Niklas
> --
> Kalle Valo
>
> _______________________________________________
> ath10k mailing list
> ath10k@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/ath10k
next prev parent reply other threads:[~2018-06-04 12:04 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-31 2:33 [PATCH net-next] ath10k: make some functions static Wei Yongjun
2018-05-31 2:33 ` Wei Yongjun
2018-05-31 2:33 ` Wei Yongjun
2018-06-04 10:27 ` Kalle Valo
2018-06-04 10:27 ` Kalle Valo
2018-06-04 10:27 ` Kalle Valo
2018-06-04 12:04 ` Niklas Cassel [this message]
2018-06-04 12:04 ` Niklas Cassel
2018-06-04 12:04 ` Niklas Cassel
2018-06-04 13:41 ` Govind Singh
2018-06-04 13:53 ` Govind Singh
2018-06-04 13:41 ` Govind Singh
2018-06-14 8:55 ` Kalle Valo
2018-06-14 8:55 ` Kalle Valo
2018-06-14 8:55 ` Kalle Valo
2018-06-14 13:55 ` Dan Carpenter
2018-06-14 13:55 ` Dan Carpenter
2018-06-14 13:55 ` Dan Carpenter
2018-06-14 14:18 ` Kalle Valo
2018-06-14 14:18 ` Kalle Valo
2018-06-14 14:18 ` Kalle Valo
2018-06-14 14:23 ` Dan Carpenter
2018-06-14 14:23 ` Dan Carpenter
2018-06-14 14:23 ` Dan Carpenter
2018-06-14 15:11 ` [net-next] " Kalle Valo
2018-06-14 15:11 ` Kalle Valo
2018-06-14 15:11 ` Kalle Valo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180604120400.GA6240@centauri.lan \
--to=niklas.cassel@linaro.org \
--cc=ath10k@lists.infradead.org \
--cc=bjorn.andersson@linaro.org \
--cc=govinds@codeaurora.org \
--cc=kernel-janitors@vger.kernel.org \
--cc=kvalo@codeaurora.org \
--cc=linux-wireless@vger.kernel.org \
--cc=weiyongjun1@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.