Commit 958cb7d4 authored by Walt Feasel's avatar Walt Feasel Committed by Greg Kroah-Hartman

staging: speakup: spk_types.h Comment modifications

Make modifications to comment style
Signed-off-by: default avatarWalt Feasel <waltfeasel@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent be8431dc
#ifndef SPEAKUP_TYPES_H #ifndef SPEAKUP_TYPES_H
#define SPEAKUP_TYPES_H #define SPEAKUP_TYPES_H
/* /* This file includes all of the typedefs and structs used in speakup. */
* This file includes all of the typedefs and structs used in speakup.
*/
#include <linux/types.h> #include <linux/types.h>
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/errno.h> #include <linux/errno.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/wait.h> /* for wait_queue */ #include <linux/wait.h> /* for wait_queue */
#include <linux/init.h> /* for __init */ #include <linux/init.h> /* for __init */
#include <linux/module.h> #include <linux/module.h>
#include <linux/vt_kern.h> #include <linux/vt_kern.h>
#include <linux/spinlock.h> #include <linux/spinlock.h>
...@@ -105,7 +103,7 @@ struct st_var_header { ...@@ -105,7 +103,7 @@ struct st_var_header {
enum var_id_t var_id; enum var_id_t var_id;
enum var_type_t var_type; enum var_type_t var_type;
void *p_val; /* ptr to programs variable to store value */ void *p_val; /* ptr to programs variable to store value */
void *data; /* ptr to the vars data */ void *data; /* ptr to the vars data */
}; };
struct num_var_t { struct num_var_t {
...@@ -114,8 +112,8 @@ struct num_var_t { ...@@ -114,8 +112,8 @@ struct num_var_t {
int low; int low;
int high; int high;
short offset, multiplier; /* for fiddling rates etc. */ short offset, multiplier; /* for fiddling rates etc. */
char *out_str; /* if synth needs char representation of number */ char *out_str; /* if synth needs char representation of number */
int value; /* current value */ int value; /* current value */
}; };
struct punc_var_t { struct punc_var_t {
...@@ -181,7 +179,7 @@ struct spk_synth { ...@@ -181,7 +179,7 @@ struct spk_synth {
struct attribute_group attributes; struct attribute_group attributes;
}; };
/** /*
* module_spk_synth() - Helper macro for registering a speakup driver * module_spk_synth() - Helper macro for registering a speakup driver
* @__spk_synth: spk_synth struct * @__spk_synth: spk_synth struct
* Helper macro for speakup drivers which do not do anything special in module * Helper macro for speakup drivers which do not do anything special in module
......
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