Compare commits

...

3 Commits

Author SHA1 Message Date
Ulrich Bessoh aa3b03202d null pointer error 2024-07-16 16:14:20 +02:00
Ulrich Bessoh 5c9a25514f null pointer error 2024-07-16 16:02:48 +02:00
Ulrich Bessoh 16f5fafdf7 null pointer error 2024-07-16 15:50:57 +02:00
1 changed files with 14 additions and 0 deletions

View File

@ -23,6 +23,12 @@ static void boom(void) {
printk(" ⠀⠀⠀⠀⠀⠀⠀⠀⠐⠋⠁⠠⠃⠀⠈⠀⠈⠙⠂⠀⠀⠀⠀⠀⠀⠀⠀\n");
}
<<<<<<< HEAD
=======
>>>>>>> 872f2f071428594c941a76a302e55e515be334d1
static enum hrtimer_restart sst_cb(struct hrtimer *timer) {
timer = NULL;
printk("Three...\n");
@ -33,7 +39,11 @@ static enum hrtimer_restart sst_cb(struct hrtimer *timer) {
mdelay(1000);
boom();
// Marvin knows everything about cookies.
<<<<<<< HEAD
//timer->function = NULL;
=======
timer->function = NULL;
>>>>>>> 872f2f071428594c941a76a302e55e515be334d1
return HRTIMER_NORESTART;
}
@ -43,4 +53,8 @@ void arm_sst(void) {
printk("Armed the universe's timer.\n");
hrtimer_start(&timer, ms_to_ktime(75000), HRTIMER_MODE_REL);
<<<<<<< HEAD
=======
>>>>>>> 872f2f071428594c941a76a302e55e515be334d1
}