Commit 0204c58e authored by Daeseok Youn's avatar Daeseok Youn Committed by Greg Kroah-Hartman

staging: android: timed_output: fix a checkpatch warning

- WARNING: Multiple spaces after return type
Signed-off-by: default avatarDaeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 51108985
...@@ -20,10 +20,10 @@ struct timed_output_dev { ...@@ -20,10 +20,10 @@ struct timed_output_dev {
const char *name; const char *name;
/* enable the output and set the timer */ /* enable the output and set the timer */
void (*enable)(struct timed_output_dev *sdev, int timeout); void (*enable)(struct timed_output_dev *sdev, int timeout);
/* returns the current number of milliseconds remaining on the timer */ /* returns the current number of milliseconds remaining on the timer */
int (*get_time)(struct timed_output_dev *sdev); int (*get_time)(struct timed_output_dev *sdev);
/* private data */ /* private data */
struct device *dev; struct device *dev;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment