Explorar el Código

staging: bcm2835-audio: Remove unnecessary space after cast

Fixes checkpatch check "No space is necessary after a cast".

Signed-off-by: Simon Sandström <simon@nikanor.nu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Simon Sandström hace 8 años
padre
commit
b715b51e18
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      drivers/staging/bcm2835-audio/bcm2835.c

+ 1 - 1
drivers/staging/bcm2835-audio/bcm2835.c

@@ -163,7 +163,7 @@ static int snd_bcm2835_alsa_remove(struct platform_device *pdev)
 
 	drv_data = platform_get_drvdata(pdev);
 
-	if (drv_data == (void *) g_card) {
+	if (drv_data == (void *)g_card) {
 		/* This is the card device */
 		snd_card_free((struct snd_card *)drv_data);
 		g_card = NULL;