summaryrefslogtreecommitdiffstats
path: root/drivers/staging/most/aim-sound
diff options
context:
space:
mode:
authorShraddha Barke2015-10-13 17:37:49 +0200
committerGreg Kroah-Hartman2015-10-13 19:11:03 +0200
commit246ed517ebc90469b7f399e12017a4121b6ec2cc (patch)
tree4b9ad9b9456a0696a532fe2cd1945f9ca32ddd9c /drivers/staging/most/aim-sound
parentStaging: iio: Remove exceptional & on function name (diff)
downloadkernel-qcow2-linux-246ed517ebc90469b7f399e12017a4121b6ec2cc.tar.gz
kernel-qcow2-linux-246ed517ebc90469b7f399e12017a4121b6ec2cc.tar.xz
kernel-qcow2-linux-246ed517ebc90469b7f399e12017a4121b6ec2cc.zip
Staging: most: Remove exceptional & on function name
In this file, function names are otherwise used as pointers without &. A simplified version of the Coccinelle semantic patch that makes this change is as follows: // <smpl> @r@ identifier f; @@ f(...) { ... } @@ identifier r.f; @@ - &f + f // </smpl> Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/most/aim-sound')
-rw-r--r--drivers/staging/most/aim-sound/sound.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/most/aim-sound/sound.c b/drivers/staging/most/aim-sound/sound.c
index f08545c56110..4d3376340daa 100644
--- a/drivers/staging/most/aim-sound/sound.c
+++ b/drivers/staging/most/aim-sound/sound.c
@@ -279,7 +279,7 @@ static int pcm_open(struct snd_pcm_substream *substream)
channel->substream = substream;
if (cfg->direction == MOST_CH_TX) {
- channel->playback_task = kthread_run(&playback_thread, channel,
+ channel->playback_task = kthread_run(playback_thread, channel,
"most_audio_playback");
if (IS_ERR(channel->playback_task)) {
pr_err("Couldn't start thread\n");