* [PATCH] drivers: mmc: Mark the function sdhci_disable_irq_wakeups() as static in sdhci.c
@ 2013-12-14 13:16 Rashika Kheria
2013-12-14 21:00 ` Josh Triplett
2013-12-15 19:29 ` [PATCH v2] " Rashika Kheria
0 siblings, 2 replies; 3+ messages in thread
From: Rashika Kheria @ 2013-12-14 13:16 UTC (permalink / raw)
To: linux-kernel; +Cc: Chris Ball, linux-mmc, josh
This patch marks the function sdhci_disable_irq_wakeups() as static in
host/sdhci.c because it is not used outside this file.
Thus, it also eliminates the following warning in host/sdhci.c:
drivers/mmc/host/sdhci.c:2553:6: warning: no previous prototype for ‘sdhci_disable_irq_wakeups’ [-Wmissing-prototypes]
Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
---
drivers/mmc/host/sdhci.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
index bd8a098..8de50e8 100644
--- a/drivers/mmc/host/sdhci.c
+++ b/drivers/mmc/host/sdhci.c
@@ -2550,7 +2550,7 @@ void sdhci_enable_irq_wakeups(struct sdhci_host *host)
}
EXPORT_SYMBOL_GPL(sdhci_enable_irq_wakeups);
-void sdhci_disable_irq_wakeups(struct sdhci_host *host)
+static void sdhci_disable_irq_wakeups(struct sdhci_host *host)
{
u8 val;
u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] drivers: mmc: Mark the function sdhci_disable_irq_wakeups() as static in sdhci.c
2013-12-14 13:16 [PATCH] drivers: mmc: Mark the function sdhci_disable_irq_wakeups() as static in sdhci.c Rashika Kheria
@ 2013-12-14 21:00 ` Josh Triplett
2013-12-15 19:29 ` [PATCH v2] " Rashika Kheria
1 sibling, 0 replies; 3+ messages in thread
From: Josh Triplett @ 2013-12-14 21:00 UTC (permalink / raw)
To: Rashika Kheria; +Cc: linux-kernel, Chris Ball, linux-mmc
On Sat, Dec 14, 2013 at 06:46:31PM +0530, Rashika Kheria wrote:
> This patch marks the function sdhci_disable_irq_wakeups() as static in
> host/sdhci.c because it is not used outside this file.
>
> Thus, it also eliminates the following warning in host/sdhci.c:
> drivers/mmc/host/sdhci.c:2553:6: warning: no previous prototype for ‘sdhci_disable_irq_wakeups’ [-Wmissing-prototypes]
>
> Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
This function has an EXPORT_SYMBOL_GPL, making it available for use
elsewhere in the kernel. However, nothing in the kernel actually
*calls* this function, other than the one internal call in
sdhci_resume_host. Thus, I'd suggest making this function static as you
have in this patch, and additionally deleting the EXPORT_SYMBOL_GPL for
it.
With that change:
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
> drivers/mmc/host/sdhci.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
> index bd8a098..8de50e8 100644
> --- a/drivers/mmc/host/sdhci.c
> +++ b/drivers/mmc/host/sdhci.c
> @@ -2550,7 +2550,7 @@ void sdhci_enable_irq_wakeups(struct sdhci_host *host)
> }
> EXPORT_SYMBOL_GPL(sdhci_enable_irq_wakeups);
>
> -void sdhci_disable_irq_wakeups(struct sdhci_host *host)
> +static void sdhci_disable_irq_wakeups(struct sdhci_host *host)
> {
> u8 val;
> u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
> --
> 1.7.9.5
>
^ permalink raw reply [flat|nested] 3+ messages in thread* [PATCH v2] drivers: mmc: Mark the function sdhci_disable_irq_wakeups() as static in sdhci.c
2013-12-14 13:16 [PATCH] drivers: mmc: Mark the function sdhci_disable_irq_wakeups() as static in sdhci.c Rashika Kheria
2013-12-14 21:00 ` Josh Triplett
@ 2013-12-15 19:29 ` Rashika Kheria
1 sibling, 0 replies; 3+ messages in thread
From: Rashika Kheria @ 2013-12-15 19:29 UTC (permalink / raw)
To: linux-kernel, Chris Ball, linux-mmc, josh
This patch marks the function sdhci_disable_irq_wakeups() as static in
host/sdhci.c because it is not used outside this file. It also removes
the EXPORT_SYMBOL_GPL because no other file in kernel uses this
function.
Thus, it also eliminates the following warning in host/sdhci.c:
drivers/mmc/host/sdhci.c:2553:6: warning: no previous prototype for ‘sdhci_disable_irq_wakeups’ [-Wmissing-prototypes]
Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
---
drivers/mmc/host/sdhci.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
index bd8a098..5fcf200 100644
--- a/drivers/mmc/host/sdhci.c
+++ b/drivers/mmc/host/sdhci.c
@@ -2550,7 +2550,7 @@ void sdhci_enable_irq_wakeups(struct sdhci_host *host)
}
EXPORT_SYMBOL_GPL(sdhci_enable_irq_wakeups);
-void sdhci_disable_irq_wakeups(struct sdhci_host *host)
+static void sdhci_disable_irq_wakeups(struct sdhci_host *host)
{
u8 val;
u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
@@ -2560,7 +2560,6 @@ void sdhci_disable_irq_wakeups(struct sdhci_host *host)
val &= ~mask;
sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
}
-EXPORT_SYMBOL_GPL(sdhci_disable_irq_wakeups);
int sdhci_suspend_host(struct sdhci_host *host)
{
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-12-15 19:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-14 13:16 [PATCH] drivers: mmc: Mark the function sdhci_disable_irq_wakeups() as static in sdhci.c Rashika Kheria
2013-12-14 21:00 ` Josh Triplett
2013-12-15 19:29 ` [PATCH v2] " Rashika Kheria
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).