linux-m68k.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] m68k: Kconfig.machine: remove obsolete configs ROMBASE and ROMSIZE
@ 2023-03-20 13:54 Lukas Bulwahn
  2023-03-20 14:30 ` Geert Uytterhoeven
  2023-03-21  0:09 ` Greg Ungerer
  0 siblings, 2 replies; 3+ messages in thread
From: Lukas Bulwahn @ 2023-03-20 13:54 UTC (permalink / raw)
  To: Geert Uytterhoeven, linux-m68k
  Cc: kernel-janitors, linux-kernel, Lukas Bulwahn

The configs ROMBASE and ROMSIZE were used in arch/m68k/68360/head-ram.S,
which was removed with commit a3595962d824 ("m68knommu: remove obsolete
68360 support").

Remove the obsolete configs ROMBASE and ROMSIZE.

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
 arch/m68k/Kconfig.machine | 17 -----------------
 1 file changed, 17 deletions(-)

diff --git a/arch/m68k/Kconfig.machine b/arch/m68k/Kconfig.machine
index e2f961208f18..255d50574065 100644
--- a/arch/m68k/Kconfig.machine
+++ b/arch/m68k/Kconfig.machine
@@ -439,15 +439,6 @@ config ROM
 	  that can be stored in flash, with possibly the text, and data
 	  regions being copied out to RAM at startup.
 
-config ROMBASE
-	hex "Address of the base of ROM device"
-	default "0"
-	depends on ROM
-	help
-	  Define the address that the ROM region starts at. Some platforms
-	  use this to set their chip select region accordingly for the boot
-	  device.
-
 config ROMVEC
 	hex "Address of the base of the ROM vectors"
 	default "0"
@@ -465,14 +456,6 @@ config ROMSTART
 	  Define the start address of the system image in ROM. Commonly this
 	  is strait after the ROM vectors.
 
-config ROMSIZE
-	hex "Size of the ROM device"
-	default "0x100000"
-	depends on ROM
-	help
-	  Size of the ROM device. On some platforms this is used to setup
-	  the chip select that controls the boot ROM device.
-
 choice
 	prompt "Kernel executes from"
 	help
-- 
2.17.1


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

* Re: [PATCH] m68k: Kconfig.machine: remove obsolete configs ROMBASE and ROMSIZE
  2023-03-20 13:54 [PATCH] m68k: Kconfig.machine: remove obsolete configs ROMBASE and ROMSIZE Lukas Bulwahn
@ 2023-03-20 14:30 ` Geert Uytterhoeven
  2023-03-21  0:09 ` Greg Ungerer
  1 sibling, 0 replies; 3+ messages in thread
From: Geert Uytterhoeven @ 2023-03-20 14:30 UTC (permalink / raw)
  To: Lukas Bulwahn; +Cc: linux-m68k, kernel-janitors, linux-kernel, Greg Ungerer

CC Greg

On Mon, Mar 20, 2023 at 2:54 PM Lukas Bulwahn <lukas.bulwahn@gmail.com> wrote:
> The configs ROMBASE and ROMSIZE were used in arch/m68k/68360/head-ram.S,
> which was removed with commit a3595962d824 ("m68knommu: remove obsolete
> 68360 support").
>
> Remove the obsolete configs ROMBASE and ROMSIZE.
>
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>

Fixes: a3595962d82495f5 ("m68knommu: remove obsolete 68360 support")
Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org>

> --- a/arch/m68k/Kconfig.machine
> +++ b/arch/m68k/Kconfig.machine
> @@ -439,15 +439,6 @@ config ROM
>           that can be stored in flash, with possibly the text, and data
>           regions being copied out to RAM at startup.
>
> -config ROMBASE
> -       hex "Address of the base of ROM device"
> -       default "0"
> -       depends on ROM
> -       help
> -         Define the address that the ROM region starts at. Some platforms
> -         use this to set their chip select region accordingly for the boot
> -         device.
> -
>  config ROMVEC
>         hex "Address of the base of the ROM vectors"
>         default "0"
> @@ -465,14 +456,6 @@ config ROMSTART
>           Define the start address of the system image in ROM. Commonly this
>           is strait after the ROM vectors.
>
> -config ROMSIZE
> -       hex "Size of the ROM device"
> -       default "0x100000"
> -       depends on ROM
> -       help
> -         Size of the ROM device. On some platforms this is used to setup
> -         the chip select that controls the boot ROM device.
> -
>  choice
>         prompt "Kernel executes from"
>         help

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH] m68k: Kconfig.machine: remove obsolete configs ROMBASE and ROMSIZE
  2023-03-20 13:54 [PATCH] m68k: Kconfig.machine: remove obsolete configs ROMBASE and ROMSIZE Lukas Bulwahn
  2023-03-20 14:30 ` Geert Uytterhoeven
@ 2023-03-21  0:09 ` Greg Ungerer
  1 sibling, 0 replies; 3+ messages in thread
From: Greg Ungerer @ 2023-03-21  0:09 UTC (permalink / raw)
  To: Lukas Bulwahn, Geert Uytterhoeven, linux-m68k
  Cc: kernel-janitors, linux-kernel

Hi Lukas,

On 20/3/23 23:54, Lukas Bulwahn wrote:
> The configs ROMBASE and ROMSIZE were used in arch/m68k/68360/head-ram.S,
> which was removed with commit a3595962d824 ("m68knommu: remove obsolete
> 68360 support").
> 
> Remove the obsolete configs ROMBASE and ROMSIZE.
> 
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>

Looks good thanks.

I have pushed this into the m68knommu git tree, for next branch,
after adding Geerts Fixes and Reviewed-by tags.

Regards
Greg


> ---
>   arch/m68k/Kconfig.machine | 17 -----------------
>   1 file changed, 17 deletions(-)
> 
> diff --git a/arch/m68k/Kconfig.machine b/arch/m68k/Kconfig.machine
> index e2f961208f18..255d50574065 100644
> --- a/arch/m68k/Kconfig.machine
> +++ b/arch/m68k/Kconfig.machine
> @@ -439,15 +439,6 @@ config ROM
>   	  that can be stored in flash, with possibly the text, and data
>   	  regions being copied out to RAM at startup.
>   
> -config ROMBASE
> -	hex "Address of the base of ROM device"
> -	default "0"
> -	depends on ROM
> -	help
> -	  Define the address that the ROM region starts at. Some platforms
> -	  use this to set their chip select region accordingly for the boot
> -	  device.
> -
>   config ROMVEC
>   	hex "Address of the base of the ROM vectors"
>   	default "0"
> @@ -465,14 +456,6 @@ config ROMSTART
>   	  Define the start address of the system image in ROM. Commonly this
>   	  is strait after the ROM vectors.
>   
> -config ROMSIZE
> -	hex "Size of the ROM device"
> -	default "0x100000"
> -	depends on ROM
> -	help
> -	  Size of the ROM device. On some platforms this is used to setup
> -	  the chip select that controls the boot ROM device.
> -
>   choice
>   	prompt "Kernel executes from"
>   	help

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

end of thread, other threads:[~2023-03-21  0:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-20 13:54 [PATCH] m68k: Kconfig.machine: remove obsolete configs ROMBASE and ROMSIZE Lukas Bulwahn
2023-03-20 14:30 ` Geert Uytterhoeven
2023-03-21  0:09 ` Greg Ungerer

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