staging: speakup: Turn some symbols static
Turn static some symbols which do not actually need to be externally-visible Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ca2beaf84d
commit
d9f5420268
2 changed files with 3 additions and 3 deletions
|
@ -28,7 +28,7 @@
|
||||||
#define PRESSED 1
|
#define PRESSED 1
|
||||||
#define RELEASED 0
|
#define RELEASED 0
|
||||||
|
|
||||||
DEFINE_PER_CPU(bool, reporting_keystroke);
|
static DEFINE_PER_CPU(bool, reporting_keystroke);
|
||||||
|
|
||||||
static struct input_dev *virt_keyboard;
|
static struct input_dev *virt_keyboard;
|
||||||
|
|
||||||
|
|
|
@ -251,14 +251,14 @@ DEFINE_MUTEX(spk_mutex);
|
||||||
static int keyboard_notifier_call(struct notifier_block *,
|
static int keyboard_notifier_call(struct notifier_block *,
|
||||||
unsigned long code, void *param);
|
unsigned long code, void *param);
|
||||||
|
|
||||||
struct notifier_block keyboard_notifier_block = {
|
static struct notifier_block keyboard_notifier_block = {
|
||||||
.notifier_call = keyboard_notifier_call,
|
.notifier_call = keyboard_notifier_call,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int vt_notifier_call(struct notifier_block *,
|
static int vt_notifier_call(struct notifier_block *,
|
||||||
unsigned long code, void *param);
|
unsigned long code, void *param);
|
||||||
|
|
||||||
struct notifier_block vt_notifier_block = {
|
static struct notifier_block vt_notifier_block = {
|
||||||
.notifier_call = vt_notifier_call,
|
.notifier_call = vt_notifier_call,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue