Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: John Church <sleeveroller@gmail.com>
Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

John Church and committed by
Greg Kroah-Hartman
27ea2f16 89b90c68

+2 -2
+2 -2
drivers/staging/android/timed_gpio.c
··· 92 92 return -EBUSY; 93 93 94 94 gpio_data = devm_kzalloc(&pdev->dev, 95 - sizeof(struct timed_gpio_data) * pdata->num_gpios, 96 - GFP_KERNEL); 95 + sizeof(struct timed_gpio_data) * pdata->num_gpios, 96 + GFP_KERNEL); 97 97 if (!gpio_data) 98 98 return -ENOMEM; 99 99