Commit 09b7a7308630e0b768650a88bf2a3c58521c20f1
1 parent
ba738340
Change version number to 1.2.
Add newlines to printk lines.
Showing
1 changed file
with
3 additions
and
3 deletions
module/tty0tty.c
| ... | ... | @@ -39,7 +39,7 @@ |
| 39 | 39 | #include <linux/uaccess.h> |
| 40 | 40 | |
| 41 | 41 | |
| 42 | -#define DRIVER_VERSION "v1.0" | |
| 42 | +#define DRIVER_VERSION "v1.2" | |
| 43 | 43 | #define DRIVER_AUTHOR "Luis Claudio Gamboa Lopes <lcgamboa@yahoo.com>" |
| 44 | 44 | #define DRIVER_DESC "tty0tty null modem driver" |
| 45 | 45 | |
| ... | ... | @@ -582,12 +582,12 @@ static int __init tty0tty_init(void) |
| 582 | 582 | /* register the tty driver */ |
| 583 | 583 | retval = tty_register_driver(tty0tty_tty_driver); |
| 584 | 584 | if (retval) { |
| 585 | - printk(KERN_ERR "failed to register tty0tty tty driver"); | |
| 585 | + printk(KERN_ERR "failed to register tty0tty tty driver\n"); | |
| 586 | 586 | put_tty_driver(tty0tty_tty_driver); |
| 587 | 587 | return retval; |
| 588 | 588 | } |
| 589 | 589 | |
| 590 | - printk(KERN_INFO DRIVER_DESC " " DRIVER_VERSION); | |
| 590 | + printk(KERN_INFO DRIVER_DESC " " DRIVER_VERSION "\n"); | |
| 591 | 591 | return retval; |
| 592 | 592 | } |
| 593 | 593 | ... | ... |