Skip to content

Commit

Permalink
staging: speakup: devsynth.c: style fixes
Browse files Browse the repository at this point in the history
clean up this file based on reports from checkpatch.pl.

Signed-off-by: William Hubbs <w.d.hubbs@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
William Hubbs authored and Greg Kroah-Hartman committed Oct 12, 2010
1 parent 99c8da0 commit 29644b2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions drivers/staging/speakup/devsynth.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ static ssize_t speakup_file_write(struct file *fp, const char *buffer,
return (ssize_t) nbytes;
}

static ssize_t speakup_file_read(struct file *fp, char *buf, size_t nbytes, loff_t *ppos)
static ssize_t speakup_file_read(struct file *fp, char *buf, size_t nbytes,
loff_t *ppos)
{
return 0;
}
Expand Down Expand Up @@ -77,7 +78,8 @@ void speakup_register_devsynth(void)
if (misc_register(&synth_device))
pr_warn("Couldn't initialize miscdevice /dev/synth.\n");
else {
pr_info("initialized device: /dev/synth, node (MAJOR %d, MINOR %d)\n", MISC_MAJOR, SYNTH_MINOR);
pr_info("initialized device: /dev/synth, node (MAJOR %d, MINOR %d)\n",
MISC_MAJOR, SYNTH_MINOR);
misc_registered = 1;
}
}
Expand Down

0 comments on commit 29644b2

Please sign in to comment.