staging: bcm2835-audio: Remove unnecessary space after cast
authorSimon Sandström <simon@nikanor.nu>
Tue, 7 Feb 2017 11:03:04 +0000 (12:03 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 9 Feb 2017 12:14:30 +0000 (13:14 +0100)
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>
drivers/staging/bcm2835-audio/bcm2835.c

index 5bdc590..3a5e528 100644 (file)
@@ -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;