[PATCH 2/3] ARM: OMAP2+: Split omap2_hsmmc_init() to properly support I2C GPIO pins
Tony Lindgren
tony at atomide.com
Thu Feb 16 11:45:05 EST 2012
* Tony Lindgren <tony at atomide.com> [120215 09:57]:
>
> +void omap_hsmmc_late_init(struct omap2_hsmmc_info *controllers)
> +{
> + struct platform_device *pdev;
> + int res;
> +
> + for (; controllers->mmc; controllers++) {
> + if (!controllers->deferred)
> + continue;
> +
> + pdev = controllers->pdev;
> + if (!pdev)
> + continue;
> +
> + res = omap_device_register(pdev);
> + if (res) {
> + pr_err("Could not late init MMC %s\n",
> + controllers->name);
> + continue;
> + }
> + }
> +}
Most likely there's no need to pass struct omap2_hsmmc_info *controllers
to omap_hsmmc_late_init() here. And I'll also take a look at making
it a completion to make it more generic across various PMICs.
Tony
More information about the linux-arm-kernel
mailing list