On Monday 01 October 2012 04:31 PM, Sourav Poddar wrote:
> +smsc_probe(struct platform_device *pdev)
> +{
> +     struct device *dev = &pdev->dev;
> +     struct smsc *smsc = dev_get_drvdata(pdev->dev.parent);
> +     struct input_dev *input;
> +     struct smsc_keypad *kp;
> +     int ret = 0, error;
> +     int col, i, max_keys, row_shift;
> +     int irq;
> +     int addr;
> +
> +     kp = devm_kzalloc(dev, sizeof(*kp), GFP_KERNEL);
> +
> +     input = input_allocate_device();
> +     if (!kp || !input) {
> +             error = -ENOMEM;
> +             goto err1;
> +     }
> +
> +     error = smsc_keypad_parse_dt(&pdev->dev, kp);
> +     if (error)
> +             return error;
>
Are we leaking input here?
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to