staging: kpc2000: remove extra white space in kpc2000_spi.c

Since whitespace should not appear between asterisk and
variable name in a declaration statement, remove it and
fix checkpatch.pl error "foo * bar" should be "foo *bar".

Signed-off-by: Naoto Kobayashi <naoto.kobayashi4c@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Naoto Kobayashi 2019-06-10 14:43:14 +09:00 committed by Greg Kroah-Hartman
parent 0f2692f7f2
commit 991661e673
1 changed files with 1 additions and 1 deletions

View File

@ -496,7 +496,7 @@ free_master:
static int
kp_spi_remove(struct platform_device *pldev)
{
struct spi_master * master = platform_get_drvdata(pldev);
struct spi_master *master = platform_get_drvdata(pldev);
spi_unregister_master(master);
return 0;
}