diff options
Diffstat (limited to 'drivers/s390/char')
| -rw-r--r-- | drivers/s390/char/con3215.c | 2 | ||||
| -rw-r--r-- | drivers/s390/char/con3270.c | 3 | ||||
| -rw-r--r-- | drivers/s390/char/defkeymap.c | 2 | ||||
| -rw-r--r-- | drivers/s390/char/fs3270.c | 4 | ||||
| -rw-r--r-- | drivers/s390/char/keyboard.c | 2 | ||||
| -rw-r--r-- | drivers/s390/char/raw3270.c | 4 | ||||
| -rw-r--r-- | drivers/s390/char/sclp_tty.c | 2 | ||||
| -rw-r--r-- | drivers/s390/char/sclp_vt220.c | 2 | ||||
| -rw-r--r-- | drivers/s390/char/tape_char.c | 8 | ||||
| -rw-r--r-- | drivers/s390/char/tty3270.c | 13 | ||||
| -rw-r--r-- | drivers/s390/char/vmlogrdr.c | 5 |
11 files changed, 23 insertions, 24 deletions
diff --git a/drivers/s390/char/con3215.c b/drivers/s390/char/con3215.c index 25b5d7a66417..9a328f14a641 100644 --- a/drivers/s390/char/con3215.c +++ b/drivers/s390/char/con3215.c | |||
| @@ -1121,7 +1121,7 @@ static const struct tty_operations tty3215_ops = { | |||
| 1121 | * 3215 tty registration code called from tty_init(). | 1121 | * 3215 tty registration code called from tty_init(). |
| 1122 | * Most kernel services (incl. kmalloc) are available at this poimt. | 1122 | * Most kernel services (incl. kmalloc) are available at this poimt. |
| 1123 | */ | 1123 | */ |
| 1124 | int __init | 1124 | static int __init |
| 1125 | tty3215_init(void) | 1125 | tty3215_init(void) |
| 1126 | { | 1126 | { |
| 1127 | struct tty_driver *driver; | 1127 | struct tty_driver *driver; |
diff --git a/drivers/s390/char/con3270.c b/drivers/s390/char/con3270.c index 7566be890688..8e7f2d7633d6 100644 --- a/drivers/s390/char/con3270.c +++ b/drivers/s390/char/con3270.c | |||
| @@ -69,8 +69,7 @@ static void con3270_update(struct con3270 *); | |||
| 69 | /* | 69 | /* |
| 70 | * Setup timeout for a device. On timeout trigger an update. | 70 | * Setup timeout for a device. On timeout trigger an update. |
| 71 | */ | 71 | */ |
| 72 | void | 72 | static void con3270_set_timer(struct con3270 *cp, int expires) |
| 73 | con3270_set_timer(struct con3270 *cp, int expires) | ||
| 74 | { | 73 | { |
| 75 | if (expires == 0) { | 74 | if (expires == 0) { |
| 76 | if (timer_pending(&cp->timer)) | 75 | if (timer_pending(&cp->timer)) |
diff --git a/drivers/s390/char/defkeymap.c b/drivers/s390/char/defkeymap.c index 17027d918cf7..564baca01b7c 100644 --- a/drivers/s390/char/defkeymap.c +++ b/drivers/s390/char/defkeymap.c | |||
| @@ -5,6 +5,8 @@ | |||
| 5 | #include <linux/types.h> | 5 | #include <linux/types.h> |
| 6 | #include <linux/keyboard.h> | 6 | #include <linux/keyboard.h> |
| 7 | #include <linux/kd.h> | 7 | #include <linux/kd.h> |
| 8 | #include <linux/kbd_kern.h> | ||
| 9 | #include <linux/kbd_diacr.h> | ||
| 8 | 10 | ||
| 9 | u_short plain_map[NR_KEYS] = { | 11 | u_short plain_map[NR_KEYS] = { |
| 10 | 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, | 12 | 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, |
diff --git a/drivers/s390/char/fs3270.c b/drivers/s390/char/fs3270.c index 0893d306ae80..e1a746269c4c 100644 --- a/drivers/s390/char/fs3270.c +++ b/drivers/s390/char/fs3270.c | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | #include "raw3270.h" | 23 | #include "raw3270.h" |
| 24 | #include "ctrlchar.h" | 24 | #include "ctrlchar.h" |
| 25 | 25 | ||
| 26 | struct raw3270_fn fs3270_fn; | 26 | static struct raw3270_fn fs3270_fn; |
| 27 | 27 | ||
| 28 | struct fs3270 { | 28 | struct fs3270 { |
| 29 | struct raw3270_view view; | 29 | struct raw3270_view view; |
| @@ -401,7 +401,7 @@ fs3270_release(struct raw3270_view *view) | |||
| 401 | } | 401 | } |
| 402 | 402 | ||
| 403 | /* View to a 3270 device. Can be console, tty or fullscreen. */ | 403 | /* View to a 3270 device. Can be console, tty or fullscreen. */ |
| 404 | struct raw3270_fn fs3270_fn = { | 404 | static struct raw3270_fn fs3270_fn = { |
| 405 | .activate = fs3270_activate, | 405 | .activate = fs3270_activate, |
| 406 | .deactivate = fs3270_deactivate, | 406 | .deactivate = fs3270_deactivate, |
| 407 | .intv = (void *) fs3270_irq, | 407 | .intv = (void *) fs3270_irq, |
diff --git a/drivers/s390/char/keyboard.c b/drivers/s390/char/keyboard.c index 3e86fd1756e5..f62f9a4e8950 100644 --- a/drivers/s390/char/keyboard.c +++ b/drivers/s390/char/keyboard.c | |||
| @@ -148,6 +148,7 @@ kbd_ascebc(struct kbd_data *kbd, unsigned char *ascebc) | |||
| 148 | } | 148 | } |
| 149 | } | 149 | } |
| 150 | 150 | ||
| 151 | #if 0 | ||
| 151 | /* | 152 | /* |
| 152 | * Generate ebcdic -> ascii translation table from kbd_data. | 153 | * Generate ebcdic -> ascii translation table from kbd_data. |
| 153 | */ | 154 | */ |
| @@ -173,6 +174,7 @@ kbd_ebcasc(struct kbd_data *kbd, unsigned char *ebcasc) | |||
| 173 | } | 174 | } |
| 174 | } | 175 | } |
| 175 | } | 176 | } |
| 177 | #endif | ||
| 176 | 178 | ||
| 177 | /* | 179 | /* |
| 178 | * We have a combining character DIACR here, followed by the character CH. | 180 | * We have a combining character DIACR here, followed by the character CH. |
diff --git a/drivers/s390/char/raw3270.c b/drivers/s390/char/raw3270.c index 7a84014f2037..8facd14adb7c 100644 --- a/drivers/s390/char/raw3270.c +++ b/drivers/s390/char/raw3270.c | |||
| @@ -29,7 +29,7 @@ | |||
| 29 | #include <linux/device.h> | 29 | #include <linux/device.h> |
| 30 | #include <linux/mutex.h> | 30 | #include <linux/mutex.h> |
| 31 | 31 | ||
| 32 | struct class *class3270; | 32 | static struct class *class3270; |
| 33 | 33 | ||
| 34 | /* The main 3270 data structure. */ | 34 | /* The main 3270 data structure. */ |
| 35 | struct raw3270 { | 35 | struct raw3270 { |
| @@ -86,7 +86,7 @@ DECLARE_WAIT_QUEUE_HEAD(raw3270_wait_queue); | |||
| 86 | /* | 86 | /* |
| 87 | * Encode array for 12 bit 3270 addresses. | 87 | * Encode array for 12 bit 3270 addresses. |
| 88 | */ | 88 | */ |
| 89 | unsigned char raw3270_ebcgraf[64] = { | 89 | static unsigned char raw3270_ebcgraf[64] = { |
| 90 | 0x40, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, | 90 | 0x40, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, |
| 91 | 0xc8, 0xc9, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, | 91 | 0xc8, 0xc9, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, |
| 92 | 0x50, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, | 92 | 0x50, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, |
diff --git a/drivers/s390/char/sclp_tty.c b/drivers/s390/char/sclp_tty.c index 2d173e5c8a09..90536f60bf50 100644 --- a/drivers/s390/char/sclp_tty.c +++ b/drivers/s390/char/sclp_tty.c | |||
| @@ -721,7 +721,7 @@ static const struct tty_operations sclp_ops = { | |||
| 721 | .ioctl = sclp_tty_ioctl, | 721 | .ioctl = sclp_tty_ioctl, |
| 722 | }; | 722 | }; |
| 723 | 723 | ||
| 724 | int __init | 724 | static int __init |
| 725 | sclp_tty_init(void) | 725 | sclp_tty_init(void) |
| 726 | { | 726 | { |
| 727 | struct tty_driver *driver; | 727 | struct tty_driver *driver; |
diff --git a/drivers/s390/char/sclp_vt220.c b/drivers/s390/char/sclp_vt220.c index 723bf4191bfe..d8135cd4d7ab 100644 --- a/drivers/s390/char/sclp_vt220.c +++ b/drivers/s390/char/sclp_vt220.c | |||
| @@ -669,7 +669,7 @@ static const struct tty_operations sclp_vt220_ops = { | |||
| 669 | /* | 669 | /* |
| 670 | * Register driver with SCLP and Linux and initialize internal tty structures. | 670 | * Register driver with SCLP and Linux and initialize internal tty structures. |
| 671 | */ | 671 | */ |
| 672 | int __init | 672 | static int __init |
| 673 | sclp_vt220_tty_init(void) | 673 | sclp_vt220_tty_init(void) |
| 674 | { | 674 | { |
| 675 | struct tty_driver *driver; | 675 | struct tty_driver *driver; |
diff --git a/drivers/s390/char/tape_char.c b/drivers/s390/char/tape_char.c index 31198c8f2718..fb65cf05d4de 100644 --- a/drivers/s390/char/tape_char.c +++ b/drivers/s390/char/tape_char.c | |||
| @@ -137,7 +137,7 @@ tapechar_check_idalbuffer(struct tape_device *device, size_t block_size) | |||
| 137 | /* | 137 | /* |
| 138 | * Tape device read function | 138 | * Tape device read function |
| 139 | */ | 139 | */ |
| 140 | ssize_t | 140 | static ssize_t |
| 141 | tapechar_read(struct file *filp, char __user *data, size_t count, loff_t *ppos) | 141 | tapechar_read(struct file *filp, char __user *data, size_t count, loff_t *ppos) |
| 142 | { | 142 | { |
| 143 | struct tape_device *device; | 143 | struct tape_device *device; |
| @@ -201,7 +201,7 @@ tapechar_read(struct file *filp, char __user *data, size_t count, loff_t *ppos) | |||
| 201 | /* | 201 | /* |
| 202 | * Tape device write function | 202 | * Tape device write function |
| 203 | */ | 203 | */ |
| 204 | ssize_t | 204 | static ssize_t |
| 205 | tapechar_write(struct file *filp, const char __user *data, size_t count, loff_t *ppos) | 205 | tapechar_write(struct file *filp, const char __user *data, size_t count, loff_t *ppos) |
| 206 | { | 206 | { |
| 207 | struct tape_device *device; | 207 | struct tape_device *device; |
| @@ -291,7 +291,7 @@ tapechar_write(struct file *filp, const char __user *data, size_t count, loff_t | |||
| 291 | /* | 291 | /* |
| 292 | * Character frontend tape device open function. | 292 | * Character frontend tape device open function. |
| 293 | */ | 293 | */ |
| 294 | int | 294 | static int |
| 295 | tapechar_open (struct inode *inode, struct file *filp) | 295 | tapechar_open (struct inode *inode, struct file *filp) |
| 296 | { | 296 | { |
| 297 | struct tape_device *device; | 297 | struct tape_device *device; |
| @@ -326,7 +326,7 @@ tapechar_open (struct inode *inode, struct file *filp) | |||
| 326 | * Character frontend tape device release function. | 326 | * Character frontend tape device release function. |
| 327 | */ | 327 | */ |
| 328 | 328 | ||
| 329 | int | 329 | static int |
| 330 | tapechar_release(struct inode *inode, struct file *filp) | 330 | tapechar_release(struct inode *inode, struct file *filp) |
| 331 | { | 331 | { |
| 332 | struct tape_device *device; | 332 | struct tape_device *device; |
diff --git a/drivers/s390/char/tty3270.c b/drivers/s390/char/tty3270.c index 09844621edc0..bc33068b9ce2 100644 --- a/drivers/s390/char/tty3270.c +++ b/drivers/s390/char/tty3270.c | |||
| @@ -36,7 +36,7 @@ | |||
| 36 | struct tty_driver *tty3270_driver; | 36 | struct tty_driver *tty3270_driver; |
| 37 | static int tty3270_max_index; | 37 | static int tty3270_max_index; |
| 38 | 38 | ||
| 39 | struct raw3270_fn tty3270_fn; | 39 | static struct raw3270_fn tty3270_fn; |
| 40 | 40 | ||
| 41 | struct tty3270_cell { | 41 | struct tty3270_cell { |
| 42 | unsigned char character; | 42 | unsigned char character; |
| @@ -119,8 +119,7 @@ static void tty3270_update(struct tty3270 *); | |||
| 119 | /* | 119 | /* |
| 120 | * Setup timeout for a device. On timeout trigger an update. | 120 | * Setup timeout for a device. On timeout trigger an update. |
| 121 | */ | 121 | */ |
| 122 | void | 122 | static void tty3270_set_timer(struct tty3270 *tp, int expires) |
| 123 | tty3270_set_timer(struct tty3270 *tp, int expires) | ||
| 124 | { | 123 | { |
| 125 | if (expires == 0) { | 124 | if (expires == 0) { |
| 126 | if (timer_pending(&tp->timer) && del_timer(&tp->timer)) | 125 | if (timer_pending(&tp->timer) && del_timer(&tp->timer)) |
| @@ -841,7 +840,7 @@ tty3270_del_views(void) | |||
| 841 | } | 840 | } |
| 842 | } | 841 | } |
| 843 | 842 | ||
| 844 | struct raw3270_fn tty3270_fn = { | 843 | static struct raw3270_fn tty3270_fn = { |
| 845 | .activate = tty3270_activate, | 844 | .activate = tty3270_activate, |
| 846 | .deactivate = tty3270_deactivate, | 845 | .deactivate = tty3270_deactivate, |
| 847 | .intv = (void *) tty3270_irq, | 846 | .intv = (void *) tty3270_irq, |
| @@ -1754,8 +1753,7 @@ static const struct tty_operations tty3270_ops = { | |||
| 1754 | .set_termios = tty3270_set_termios | 1753 | .set_termios = tty3270_set_termios |
| 1755 | }; | 1754 | }; |
| 1756 | 1755 | ||
| 1757 | void | 1756 | static void tty3270_notifier(int index, int active) |
| 1758 | tty3270_notifier(int index, int active) | ||
| 1759 | { | 1757 | { |
| 1760 | if (active) | 1758 | if (active) |
| 1761 | tty_register_device(tty3270_driver, index, NULL); | 1759 | tty_register_device(tty3270_driver, index, NULL); |
| @@ -1767,8 +1765,7 @@ tty3270_notifier(int index, int active) | |||
| 1767 | * 3270 tty registration code called from tty_init(). | 1765 | * 3270 tty registration code called from tty_init(). |
| 1768 | * Most kernel services (incl. kmalloc) are available at this poimt. | 1766 | * Most kernel services (incl. kmalloc) are available at this poimt. |
| 1769 | */ | 1767 | */ |
| 1770 | int __init | 1768 | static int __init tty3270_init(void) |
| 1771 | tty3270_init(void) | ||
| 1772 | { | 1769 | { |
| 1773 | struct tty_driver *driver; | 1770 | struct tty_driver *driver; |
| 1774 | int ret; | 1771 | int ret; |
diff --git a/drivers/s390/char/vmlogrdr.c b/drivers/s390/char/vmlogrdr.c index 6cb23040954b..4f894dc2373b 100644 --- a/drivers/s390/char/vmlogrdr.c +++ b/drivers/s390/char/vmlogrdr.c | |||
| @@ -128,9 +128,8 @@ static iucv_interrupt_ops_t vmlogrdr_iucvops = { | |||
| 128 | .MessagePending = vmlogrdr_iucv_MessagePending, | 128 | .MessagePending = vmlogrdr_iucv_MessagePending, |
| 129 | }; | 129 | }; |
| 130 | 130 | ||
| 131 | 131 | static DECLARE_WAIT_QUEUE_HEAD(conn_wait_queue); | |
| 132 | DECLARE_WAIT_QUEUE_HEAD(conn_wait_queue); | 132 | static DECLARE_WAIT_QUEUE_HEAD(read_wait_queue); |
| 133 | DECLARE_WAIT_QUEUE_HEAD(read_wait_queue); | ||
| 134 | 133 | ||
| 135 | /* | 134 | /* |
| 136 | * pointer to system service private structure | 135 | * pointer to system service private structure |
