Skip to content

Commit

Permalink
Split line to avoid possible unwrapped commit description
Browse files Browse the repository at this point in the history
Signed-off-by: Chinmay Nivsarkar <[email protected]>
  • Loading branch information
chinmay-n committed Sep 6, 2016
1 parent 1444224 commit d1bf9b5
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions Task_04/hello.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,14 @@
#include <linux/module.h>
#include <linux/kernel.h>

static int __init hello_module_init(void)
{
printk(KERN_DEBUG "Hello World");
return 0;
static int __init hello_module_init(void){
printk(KERN_DEBUG "Hello World");
return 0;
}

static void __exit hello_cleanup(void)
{
printk(KERN_DEBUG "Module by Chinmay
Nivsarkar<mit.chinmayn@gmail.com>");
static void __exit hello_cleanup(void){
printk(KERN_DEBUG "Module by Chinmay
Nivsarkar<mit.chinmayn@gmail.com>");
}

module_init(hello_module_init);
Expand Down

0 comments on commit d1bf9b5

Please sign in to comment.