The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] mn10300/PCI: Remove pci_mem_start
@ 2013-09-28 17:59 Myron Stowe
  2013-09-30 13:41 ` David Howells
  2013-10-04 20:22 ` Bjorn Helgaas
  0 siblings, 2 replies; 3+ messages in thread
From: Myron Stowe @ 2013-09-28 17:59 UTC (permalink / raw)
  To: dhowells, yasutake.koichi, bhelgaas
  Cc: linux-am33-list, linux-pci, linux-kernel

Remove unused 'pci_mem_start' variable.

CC: David Howells <dhowells@redhat.com>
CC: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
Signed-off-by: Myron Stowe <myron.stowe@redhat.com>
---

 arch/mn10300/include/asm/pci.h |    1 -
 arch/mn10300/kernel/setup.c    |    3 ---
 2 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/arch/mn10300/include/asm/pci.h b/arch/mn10300/include/asm/pci.h
index 6f31cc0..1663238 100644
--- a/arch/mn10300/include/asm/pci.h
+++ b/arch/mn10300/include/asm/pci.h
@@ -44,7 +44,6 @@ extern void unit_pci_init(void);
 #define pcibios_assign_all_busses()	0
 #endif
 
-extern unsigned long pci_mem_start;
 #define PCIBIOS_MIN_IO		0xBE000004
 #define PCIBIOS_MIN_MEM		0xB8000000
 
diff --git a/arch/mn10300/kernel/setup.c b/arch/mn10300/kernel/setup.c
index ebac9c1..2ad7f32 100644
--- a/arch/mn10300/kernel/setup.c
+++ b/arch/mn10300/kernel/setup.c
@@ -35,9 +35,6 @@
 
 struct mn10300_cpuinfo boot_cpu_data;
 
-/* For PCI or other memory-mapped resources */
-unsigned long pci_mem_start = 0x18000000;
-
 static char __initdata cmd_line[COMMAND_LINE_SIZE];
 char redboot_command_line[COMMAND_LINE_SIZE] =
 	"console=ttyS0,115200 root=/dev/mtdblock3 rw";


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

* Re: [PATCH] mn10300/PCI: Remove pci_mem_start
  2013-09-28 17:59 [PATCH] mn10300/PCI: Remove pci_mem_start Myron Stowe
@ 2013-09-30 13:41 ` David Howells
  2013-10-04 20:22 ` Bjorn Helgaas
  1 sibling, 0 replies; 3+ messages in thread
From: David Howells @ 2013-09-30 13:41 UTC (permalink / raw)
  To: Myron Stowe
  Cc: dhowells, yasutake.koichi, bhelgaas, linux-am33-list, linux-pci,
	linux-kernel

Myron Stowe <myron.stowe@redhat.com> wrote:

> Remove unused 'pci_mem_start' variable.
> 
> CC: David Howells <dhowells@redhat.com>
> CC: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
> Signed-off-by: Myron Stowe <myron.stowe@redhat.com>

Acked-by: David Howells <dhowells@redhat.com>

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

* Re: [PATCH] mn10300/PCI: Remove pci_mem_start
  2013-09-28 17:59 [PATCH] mn10300/PCI: Remove pci_mem_start Myron Stowe
  2013-09-30 13:41 ` David Howells
@ 2013-10-04 20:22 ` Bjorn Helgaas
  1 sibling, 0 replies; 3+ messages in thread
From: Bjorn Helgaas @ 2013-10-04 20:22 UTC (permalink / raw)
  To: Myron Stowe
  Cc: David Howells, Koichi Yasutake, linux-am33-list,
	linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org

On Sat, Sep 28, 2013 at 11:59 AM, Myron Stowe <myron.stowe@redhat.com> wrote:
> Remove unused 'pci_mem_start' variable.
>
> CC: David Howells <dhowells@redhat.com>
> CC: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
> Signed-off-by: Myron Stowe <myron.stowe@redhat.com>

Applied to pci/misc with David's ack.  Thanks!

Bjorn

> ---
>
>  arch/mn10300/include/asm/pci.h |    1 -
>  arch/mn10300/kernel/setup.c    |    3 ---
>  2 files changed, 0 insertions(+), 4 deletions(-)
>
> diff --git a/arch/mn10300/include/asm/pci.h b/arch/mn10300/include/asm/pci.h
> index 6f31cc0..1663238 100644
> --- a/arch/mn10300/include/asm/pci.h
> +++ b/arch/mn10300/include/asm/pci.h
> @@ -44,7 +44,6 @@ extern void unit_pci_init(void);
>  #define pcibios_assign_all_busses()    0
>  #endif
>
> -extern unsigned long pci_mem_start;
>  #define PCIBIOS_MIN_IO         0xBE000004
>  #define PCIBIOS_MIN_MEM                0xB8000000
>
> diff --git a/arch/mn10300/kernel/setup.c b/arch/mn10300/kernel/setup.c
> index ebac9c1..2ad7f32 100644
> --- a/arch/mn10300/kernel/setup.c
> +++ b/arch/mn10300/kernel/setup.c
> @@ -35,9 +35,6 @@
>
>  struct mn10300_cpuinfo boot_cpu_data;
>
> -/* For PCI or other memory-mapped resources */
> -unsigned long pci_mem_start = 0x18000000;
> -
>  static char __initdata cmd_line[COMMAND_LINE_SIZE];
>  char redboot_command_line[COMMAND_LINE_SIZE] =
>         "console=ttyS0,115200 root=/dev/mtdblock3 rw";
>

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

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

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-28 17:59 [PATCH] mn10300/PCI: Remove pci_mem_start Myron Stowe
2013-09-30 13:41 ` David Howells
2013-10-04 20:22 ` Bjorn Helgaas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox