diff --git a/src/02-driver/character-oriented/skeleton.c b/src/02-driver/character-oriented/skeleton.c index 185b486..7ea2dfc 100644 --- a/src/02-driver/character-oriented/skeleton.c +++ b/src/02-driver/character-oriented/skeleton.c @@ -181,15 +181,5 @@ module_exit (skeleton_exit); MODULE_AUTHOR("Fastium "); MODULE_AUTHOR("Klagarge "); -MODULE_DESCRIPTION ("Module pilot charachter oriented"); +MODULE_DESCRIPTION ("Module pilot character oriented"); MODULE_LICENSE ("GPL"); - -/* - * MAJOR can be find: cat /proc/device - * - * For testing with echo and cat: - * - mknod /dev/test-device -c 42 0 (Create a charachter device file with the right Major and Minor) - * - echo "lalalalalaalalalalallala" > /dev/test-device - * - cat /dev/test-device - * - */ diff --git a/src/02-driver/exercice/ex4-character-oriented.c b/src/02-driver/exercice/ex4-character-oriented.c index 1503c5c..cebd300 100644 --- a/src/02-driver/exercice/ex4-character-oriented.c +++ b/src/02-driver/exercice/ex4-character-oriented.c @@ -10,7 +10,7 @@ #define DATA_LENGTH 70 -static const char* data = "J'ai le chocolat qui est collé au palais, ducoup j'arrive pas a parlé\0"; +static const char* data = "I've got chocolate stuck to the roof of my mouth, so I can't speak\0"; static char data_read[DATA_LENGTH] = {};