aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/tty_io.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/char/tty_io.c')
-rw-r--r--drivers/char/tty_io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c
index d71f0fc34b4..507441ac6ed 100644
--- a/drivers/char/tty_io.c
+++ b/drivers/char/tty_io.c
@@ -3128,7 +3128,7 @@ static struct cdev tty_cdev, console_cdev;
3128 * Ok, now we can initialize the rest of the tty devices and can count 3128 * Ok, now we can initialize the rest of the tty devices and can count
3129 * on memory allocations, interrupts etc.. 3129 * on memory allocations, interrupts etc..
3130 */ 3130 */
3131static int __init tty_init(void) 3131int __init tty_init(void)
3132{ 3132{
3133 cdev_init(&tty_cdev, &tty_fops); 3133 cdev_init(&tty_cdev, &tty_fops);
3134 if (cdev_add(&tty_cdev, MKDEV(TTYAUX_MAJOR, 0), 1) || 3134 if (cdev_add(&tty_cdev, MKDEV(TTYAUX_MAJOR, 0), 1) ||
@@ -3149,4 +3149,4 @@ static int __init tty_init(void)
3149#endif 3149#endif
3150 return 0; 3150 return 0;
3151} 3151}
3152module_init(tty_init); 3152