aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty/vt/Makefile
diff options
context:
space:
mode:
authorCong Ding <dinggnu@gmail.com>2012-12-08 01:09:03 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-01-15 21:52:24 -0800
commit92b336f6af9aafddda9e81c0c66c36e61cf2dc47 (patch)
tree13823a6850b66761b073e8aaefb1921bf4985cd9 /drivers/tty/vt/Makefile
parenttty: serial core: decouple pm states from ACPI (diff)
downloadlinux-dev-92b336f6af9aafddda9e81c0c66c36e61cf2dc47.tar.xz
linux-dev-92b336f6af9aafddda9e81c0c66c36e61cf2dc47.zip
tty: vt/Makefile: set the variables to static
tty: vt/Makefile: set the variables to static In the file drivers/tty/vt/defkeymap.c generated by command loadkeys --mktable defkeymap.map > defkeymap.c the 6 variables: shift_map, altgr_map, ctrl_map, shift_ctrl_map, alt_map, and ctrl_alt_map should be static because they are used only in this file. There is no reason to remove the static by sed command. Signed-off-by: Cong Ding <dinggnu@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/vt/Makefile')
-rw-r--r--drivers/tty/vt/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/tty/vt/Makefile b/drivers/tty/vt/Makefile
index 14a51c9960df..17ae94cb29f8 100644
--- a/drivers/tty/vt/Makefile
+++ b/drivers/tty/vt/Makefile
@@ -27,8 +27,6 @@ $(obj)/defkeymap.o: $(obj)/defkeymap.c
ifdef GENERATE_KEYMAP
$(obj)/defkeymap.c: $(obj)/%.c: $(src)/%.map
- loadkeys --mktable $< > $@.tmp
- sed -e 's/^static *//' $@.tmp > $@
- rm $@.tmp
+ loadkeys --mktable $< > $@
endif