Commit 27ea2f16 authored by John Church's avatar John Church Committed by Greg Kroah-Hartman

staging : android: Fixes a coding style issue in timed_gpio.c

This patch fixes a coding style issue for a line that was over 80 characters long.
Signed-off-by: default avatarJohn Church <sleeveroller@gmail.com>
Reviewed-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 89b90c68
...@@ -92,8 +92,8 @@ static int timed_gpio_probe(struct platform_device *pdev) ...@@ -92,8 +92,8 @@ static int timed_gpio_probe(struct platform_device *pdev)
return -EBUSY; return -EBUSY;
gpio_data = devm_kzalloc(&pdev->dev, gpio_data = devm_kzalloc(&pdev->dev,
sizeof(struct timed_gpio_data) * pdata->num_gpios, sizeof(struct timed_gpio_data) * pdata->num_gpios,
GFP_KERNEL); GFP_KERNEL);
if (!gpio_data) if (!gpio_data)
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment