* Afzal Mohammed <af...@ti.com> [120611 08:20]:
> +__init gpmc_smsc911x_update(struct omap_smsc911x_platform_data *gpmc_cfg)
> +{
> +     int ret;
> +     struct gpmc_device_pdata *gpmc_pdev;
> +     struct gpmc_cs_data *gpmc_cs;
> +
> +     gpmc_pdev = kzalloc(sizeof(*gpmc_pdev), GFP_KERNEL);
> +     if (gpmc_pdev == NULL)
> +             return gpmc_pdev;
> +
> +     gpmc_cs = kzalloc(sizeof(*gpmc_cs), GFP_KERNEL);
> +     if (gpmc_pdev == NULL) {
> +             kfree(gpmc_pdev);
> +             return NULL;
> +     }

Here your should check for if (!gpmc_cs), not gpmc_cs. Might
be worth checking all your patches for similar copy and paste
typos.

Where do gpmc_pdev and gpmc_cs get used? Where are they
stored to the pdata?

Tony
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to