Hi Paul,

Just a couple of comments.

On Thu, 20 Dec 2007 09:54:29 -0500 Paul Gortmaker <[EMAIL PROTECTED]> wrote:
>
> +++ b/arch/powerpc/platforms/85xx/sbc8560.c
> +static void cpm2_cascade(unsigned int irq, struct irq_desc *desc)
> +{
> +     int cascade_irq;
> +
> +     while ((cascade_irq = cpm2_get_irq()) >= 0) {
> +             generic_handle_irq(cascade_irq);
> +     }

The braces are unnecessary.

> +static void __init sbc8560_pic_init(void)
> +{
> +     struct mpic *mpic;
> +     struct resource r;
> +     struct device_node *np = NULL;
> +#ifdef CONFIG_CPM2
> +     int irq;
> +#endif
> +
> +     np = of_find_node_by_type(np, "open-pic");
> +
> +     if (np == NULL) {

We often say "if (!np)" and leave out the blank line above.

> +     if(of_address_to_resource(np, 0, &r)) {
          ^
Put a space here.

> +#ifdef CONFIG_CPM2
> +     /* Setup CPM2 PIC */
> +     np = of_find_compatible_node(NULL, NULL, "fsl,cpm2-pic");
> +     if (np == NULL) {
> +             printk(KERN_ERR "PIC init: can not find fsl,cpm2-pic node\n");
> +             return;
> +     }
> +     irq = irq_of_parse_and_map(np, 0);
> +
> +     cpm2_pic_init(np);

Need an of_node_pit(np) - cpm2_pic_init() does its own of_node_get.

> +static struct cpm_pin sbc8560_pins[] = {

const?

-- 
Cheers,
Stephen Rothwell                    [EMAIL PROTECTED]
http://www.canb.auug.org.au/~sfr/

Attachment: pgpNxS42SAQNy.pgp
Description: PGP signature

_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev

Reply via email to