diff options
author | Bo YU <tsu.yubo@gmail.com> | 2017-02-16 09:59:07 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-02-16 10:20:07 -0800 |
commit | cd3d9ecebf8b3918588b1d529ad0a70da4ac8263 (patch) | |
tree | 553fe27491640703cef1dd6fe92c020345748cb5 /drivers/staging | |
parent | f5e2199ae574245b56b32e047c93625a28fe3b3a (diff) | |
download | talos-obmc-linux-cd3d9ecebf8b3918588b1d529ad0a70da4ac8263.tar.gz talos-obmc-linux-cd3d9ecebf8b3918588b1d529ad0a70da4ac8263.zip |
Staging: bcm2835-audio: fixed a code style issue:
Missing a blank line after declarations
Signed-off-by: Bo YU <tsu.yubo@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/bcm2835-audio/bcm2835-pcm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/bcm2835-audio/bcm2835-pcm.c b/drivers/staging/bcm2835-audio/bcm2835-pcm.c index 014bf7ab69f4..16127e062661 100644 --- a/drivers/staging/bcm2835-audio/bcm2835-pcm.c +++ b/drivers/staging/bcm2835-audio/bcm2835-pcm.c @@ -450,6 +450,7 @@ static int snd_bcm2835_pcm_lib_ioctl(struct snd_pcm_substream *substream, unsigned int cmd, void *arg) { int ret = snd_pcm_lib_ioctl(substream, cmd, arg); + audio_info(" .. substream=%p, cmd=%d, arg=%p (%x) ret=%d\n", substream, cmd, arg, arg ? *(unsigned *) arg : 0, ret); return ret; |