All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 4/5] [MIPS] unexport {allocate,free}_irqno
  2008-05-29 14:57 [PATCH 0/5] [MIPS] sparse noise reduction and namespace cleanups Dmitri Vorobiev
@ 2008-05-29 14:57 ` Dmitri Vorobiev
  0 siblings, 0 replies; 5+ messages in thread
From: Dmitri Vorobiev @ 2008-05-29 14:57 UTC (permalink / raw)
  To: linux-mips, ralf, linux-kernel

The following routines

allocate_irqno()
free_irqno()

seem not to be used outside of the core kernel code, hence
exporting these functions is pointless. This patch removes
the export.

Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@movial.fi>
---
 arch/mips/kernel/irq.c |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/arch/mips/kernel/irq.c b/arch/mips/kernel/irq.c
index ba4e331..ffd80de 100644
--- a/arch/mips/kernel/irq.c
+++ b/arch/mips/kernel/irq.c
@@ -44,8 +44,6 @@ again:
 	return irq;
 }
 
-EXPORT_SYMBOL_GPL(allocate_irqno);
-
 void free_irqno(unsigned int irq)
 {
 	smp_mb__before_clear_bit();
@@ -53,8 +51,6 @@ void free_irqno(unsigned int irq)
 	smp_mb__after_clear_bit();
 }
 
-EXPORT_SYMBOL_GPL(free_irqno);
-
 /*
  * 'what should we do if we get a hw irq event on an illegal vector'.
  * each architecture has to answer this themselves.
-- 
1.4.4.3


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

* Re: [PATCH 1/5] [MIPS] fix sparse warning about setup_early_printk()
       [not found] ` <12124843631742-git-send-email-dmitri.vorobiev@movial.fi>
@ 2008-06-12  7:26   ` Ralf Baechle
  0 siblings, 0 replies; 5+ messages in thread
From: Ralf Baechle @ 2008-06-12  7:26 UTC (permalink / raw)
  To: Dmitri Vorobiev; +Cc: linux-mips

On Tue, Jun 03, 2008 at 12:12:40PM +0300, Dmitri Vorobiev wrote:
> From: Dmitri Vorobiev <dmitri.vorobiev@movial.fi>
> Date: Tue,  3 Jun 2008 12:12:40 +0300
> To: linux-mips@linux-mips.org, ralf@linux-mips.org
> Subject: [PATCH 1/5] [MIPS] fix sparse warning about setup_early_printk()
> 
> This patch fixes the following sparse warning:
> 
> <<<<<<<<
> 
> arch/mips/kernel/early_printk.c:35:13: warning: symbol 'setup_early_printk'
> was not declared. Should it be static?
> 
> <<<<<<<<
> 
> The fix is to define a prototype of the setup_early_printk() function and
> to include the appropriate header into arch/mips/kernel/early_printk.c.
> 
> Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@movial.fi>
> ---
>  arch/mips/kernel/early_printk.c |    1 +
>  arch/mips/kernel/setup.c        |    6 +-----
>  include/asm-mips/setup.h        |    2 ++
>  3 files changed, 4 insertions(+), 5 deletions(-)
> 
> diff --git a/arch/mips/kernel/early_printk.c b/arch/mips/kernel/early_printk.c
> index 9dccfa4..cb602c1 100644
> --- a/arch/mips/kernel/early_printk.c
> +++ b/arch/mips/kernel/early_printk.c
> @@ -7,6 +7,7 @@
>   * Copyright (C) 2007 MIPS Technologies, Inc.
>   *   written by Ralf Baechle (ralf@linux-mips.org)
>   */
> +#include <asm/setup.h>
>  #include <linux/console.h>
>  #include <linux/init.h>

Queued for 2.6.27 with includes sorted <linux/...> first followed by
<asm/...>.

  Ralf

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

* Re: [PATCH 2/5] [MIPS] Make two functions static
       [not found] ` <12124843631632-git-send-email-dmitri.vorobiev@movial.fi>
@ 2008-06-12  7:27   ` Ralf Baechle
  0 siblings, 0 replies; 5+ messages in thread
From: Ralf Baechle @ 2008-06-12  7:27 UTC (permalink / raw)
  To: Dmitri Vorobiev; +Cc: linux-mips

On Tue, Jun 03, 2008 at 12:12:41PM +0300, Dmitri Vorobiev wrote:
> From: Dmitri Vorobiev <dmitri.vorobiev@movial.fi>
> Date: Tue,  3 Jun 2008 12:12:41 +0300
> To: linux-mips@linux-mips.org, ralf@linux-mips.org
> Subject: [PATCH 2/5] [MIPS] Make two functions static

Queued for 2.6.27.

Thanks,

  Ralf

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

* Re: [PATCH 3/5] [MIPS] remove unused function alloc_legacy_irqno()
       [not found] ` <12124843634070-git-send-email-dmitri.vorobiev@movial.fi>
@ 2008-06-12  7:36   ` Ralf Baechle
  0 siblings, 0 replies; 5+ messages in thread
From: Ralf Baechle @ 2008-06-12  7:36 UTC (permalink / raw)
  To: Dmitri Vorobiev; +Cc: linux-mips

On Tue, Jun 03, 2008 at 12:12:42PM +0300, Dmitri Vorobiev wrote:

> The function alloc_legacy_irqno() is not used any more, and this
> patch removes it.
> 
> Inspired by a namespacecheck warning.

NAK.  While currently unused alloc_legacy_irqno() is needed for systems
such as SGI IP27 which use dynamic interrupt number allocation and may
feature EISA slots.  So there eventually will be a caller.

  Ralf

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

* Re: [PATCH 4/5] [MIPS] unexport {allocate,free}_irqno
       [not found] ` <1212484363969-git-send-email-dmitri.vorobiev@movial.fi>
@ 2008-06-12  7:40   ` Ralf Baechle
  0 siblings, 0 replies; 5+ messages in thread
From: Ralf Baechle @ 2008-06-12  7:40 UTC (permalink / raw)
  To: Dmitri Vorobiev; +Cc: linux-mips

On Tue, Jun 03, 2008 at 12:12:43PM +0300, Dmitri Vorobiev wrote:

> The following routines
> 
> allocate_irqno()
> free_irqno()
> 
> seem not to be used outside of the core kernel code, hence
> exporting these functions is pointless. This patch removes
> the export.

And I don't see why one would want to use them in modules, so queue for
2.6.27 as well.  Thanks,

   Ralf

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

end of thread, other threads:[~2008-06-12  7:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <12124843631664-git-send-email-dmitri.vorobiev@movial.fi>
     [not found] ` <12124843631742-git-send-email-dmitri.vorobiev@movial.fi>
2008-06-12  7:26   ` [PATCH 1/5] [MIPS] fix sparse warning about setup_early_printk() Ralf Baechle
     [not found] ` <12124843631632-git-send-email-dmitri.vorobiev@movial.fi>
2008-06-12  7:27   ` [PATCH 2/5] [MIPS] Make two functions static Ralf Baechle
     [not found] ` <12124843634070-git-send-email-dmitri.vorobiev@movial.fi>
2008-06-12  7:36   ` [PATCH 3/5] [MIPS] remove unused function alloc_legacy_irqno() Ralf Baechle
     [not found] ` <1212484363969-git-send-email-dmitri.vorobiev@movial.fi>
2008-06-12  7:40   ` [PATCH 4/5] [MIPS] unexport {allocate,free}_irqno Ralf Baechle
2008-05-29 14:57 [PATCH 0/5] [MIPS] sparse noise reduction and namespace cleanups Dmitri Vorobiev
2008-05-29 14:57 ` [PATCH 4/5] [MIPS] unexport {allocate,free}_irqno Dmitri Vorobiev

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.