Browse Source

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>
John Church 11 years ago
parent
commit
27ea2f167b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      drivers/staging/android/timed_gpio.c

+ 2 - 2
drivers/staging/android/timed_gpio.c

@@ -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,
-				GFP_KERNEL);
+			sizeof(struct timed_gpio_data) * pdata->num_gpios,
+			GFP_KERNEL);
 	if (!gpio_data)
 	if (!gpio_data)
 		return -ENOMEM;
 		return -ENOMEM;