Re: [tpmdd-devel] [PATCH] TPM: Provide a tpm_tis OF driver

From: Rajiv Andrade
Date: Thu Mar 25 2010 - 00:20:55 EST


Just a minor comment

On Tue, 2010-03-09 at 13:01 -0700, Jason Gunthorpe wrote:

> @@ -703,7 +747,17 @@ static int __init init_tis(void)
> return rc;
> }
>
> - return pnp_register_driver(&tis_pnp_driver);
> +#ifdef CONFIG_OF
> + rc = of_register_platform_driver(&tis_of_driver);
> + if (rc)
> + return rc;
> +#endif
> +#ifdef CONFIG_PNP
> + rc = pnp_register_driver(&tis_pnp_driver);
> + if (rc)
> + return rc;
> +#endif
> + return 0;
> }
>

Why not

+#ifdef CONFIG_OF
+ return of_register_platform_driver(&tis_of_driver);
+#elif CONFIG_PNP
+ return pnp_register_driver(&tis_pnp_driver);
+#endif

?

Other than this it looks nice.

Acked-by: Rajiv Andrade <srajiv@xxxxxxxxxxxxxxxxxx>


Thanks,
Rajiv

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/