linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: Josh Boyer <jwboyer@linux.vnet.ibm.com>
To: Grant Likely <grant.likely@secretlab.ca>
Cc: arnd@arndb.de, linuxppc-dev@ozlabs.org, paulus@samba.org
Subject: Re: [PATCH 2/3] Remove empty ppc_md.setup_arch hooks.
Date: Wed, 10 Oct 2007 15:28:41 -0500	[thread overview]
Message-ID: <1192048121.5534.86.camel@localhost.localdomain> (raw)
In-Reply-To: <20071010184823.13609.41058.stgit@trillian.cg.shawcable.net>

On Wed, 2007-10-10 at 12:48 -0600, Grant Likely wrote:
> From: Grant Likely <grant.likely@secretlab.ca>

Assuming Paul likes the overall change, the 4xx parts look fine to me.

> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Acked-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>

> ---
> 
>  arch/powerpc/platforms/40x/virtex.c  |    5 -----
>  arch/powerpc/platforms/40x/walnut.c  |    5 -----
>  arch/powerpc/platforms/44x/bamboo.c  |    5 -----
>  arch/powerpc/platforms/44x/ebony.c   |    5 -----
>  arch/powerpc/platforms/44x/sequoia.c |    5 -----
>  5 files changed, 0 insertions(+), 25 deletions(-)
> 
> diff --git a/arch/powerpc/platforms/40x/virtex.c b/arch/powerpc/platforms/40x/virtex.c
> index b52aa94..14bbc32 100644
> --- a/arch/powerpc/platforms/40x/virtex.c
> +++ b/arch/powerpc/platforms/40x/virtex.c
> @@ -36,14 +36,9 @@ static int __init virtex_probe(void)
>  	return 1;
>  }
> 
> -static void __init virtex_setup_arch(void)
> -{
> -}
> -
>  define_machine(virtex) {
>  	.name			= "Xilinx Virtex",
>  	.probe			= virtex_probe,
> -	.setup_arch		= virtex_setup_arch,
>  	.init_IRQ		= xilinx_intc_init_tree,
>  	.get_irq		= xilinx_intc_get_irq,
>  	.calibrate_decr		= generic_calibrate_decr,
> diff --git a/arch/powerpc/platforms/40x/walnut.c b/arch/powerpc/platforms/40x/walnut.c
> index c17fdf2..eb0c136 100644
> --- a/arch/powerpc/platforms/40x/walnut.c
> +++ b/arch/powerpc/platforms/40x/walnut.c
> @@ -53,14 +53,9 @@ static int __init walnut_probe(void)
>  	return 1;
>  }
> 
> -static void __init walnut_setup_arch(void)
> -{
> -}
> -
>  define_machine(walnut) {
>  	.name			= "Walnut",
>  	.probe			= walnut_probe,
> -	.setup_arch		= walnut_setup_arch,
>  	.progress		= udbg_progress,
>  	.init_IRQ		= uic_init_tree,
>  	.get_irq		= uic_get_irq,
> diff --git a/arch/powerpc/platforms/44x/bamboo.c b/arch/powerpc/platforms/44x/bamboo.c
> index 9bc45de..470e1a3 100644
> --- a/arch/powerpc/platforms/44x/bamboo.c
> +++ b/arch/powerpc/platforms/44x/bamboo.c
> @@ -50,14 +50,9 @@ static int __init bamboo_probe(void)
>  	return 1;
>  }
> 
> -static void __init bamboo_setup_arch(void)
> -{
> -}
> -
>  define_machine(bamboo) {
>  	.name 				= "Bamboo",
>  	.probe 				= bamboo_probe,
> -	.setup_arch 		= bamboo_setup_arch,
>  	.progress 			= udbg_progress,
>  	.init_IRQ 			= uic_init_tree,
>  	.get_irq 			= uic_get_irq,
> diff --git a/arch/powerpc/platforms/44x/ebony.c b/arch/powerpc/platforms/44x/ebony.c
> index 5a7fec8..40e18fc 100644
> --- a/arch/powerpc/platforms/44x/ebony.c
> +++ b/arch/powerpc/platforms/44x/ebony.c
> @@ -57,14 +57,9 @@ static int __init ebony_probe(void)
>  	return 1;
>  }
> 
> -static void __init ebony_setup_arch(void)
> -{
> -}
> -
>  define_machine(ebony) {
>  	.name			= "Ebony",
>  	.probe			= ebony_probe,
> -	.setup_arch		= ebony_setup_arch,
>  	.progress		= udbg_progress,
>  	.init_IRQ		= uic_init_tree,
>  	.get_irq		= uic_get_irq,
> diff --git a/arch/powerpc/platforms/44x/sequoia.c b/arch/powerpc/platforms/44x/sequoia.c
> index 7d0d9d5..30700b3 100644
> --- a/arch/powerpc/platforms/44x/sequoia.c
> +++ b/arch/powerpc/platforms/44x/sequoia.c
> @@ -50,14 +50,9 @@ static int __init sequoia_probe(void)
>  	return 1;
>  }
> 
> -static void __init sequoia_setup_arch(void)
> -{
> -}
> -
>  define_machine(sequoia) {
>  	.name 				= "Sequoia",
>  	.probe 				= sequoia_probe,
> -	.setup_arch			= sequoia_setup_arch,
>  	.progress 			= udbg_progress,
>  	.init_IRQ 			= uic_init_tree,
>  	.get_irq 			= uic_get_irq,
> 
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-dev

  reply	other threads:[~2007-10-10 20:29 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-10-10 18:48 [PATCH 0/3] Miscellaneous powerpc patches Grant Likely
2007-10-10 18:48 ` [PATCH 1/3] Only call ppc_md.setup_arch() if it is provided Grant Likely
2007-10-10 18:48 ` [PATCH 2/3] Remove empty ppc_md.setup_arch hooks Grant Likely
2007-10-10 20:28   ` Josh Boyer [this message]
2007-10-10 18:48 ` [PATCH 3/3] Platforms shouldn't mess with ROOT_DEV Grant Likely

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=1192048121.5534.86.camel@localhost.localdomain \
    --to=jwboyer@linux.vnet.ibm.com \
    --cc=arnd@arndb.de \
    --cc=grant.likely@secretlab.ca \
    --cc=linuxppc-dev@ozlabs.org \
    --cc=paulus@samba.org \
    /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 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).