kboot: Use (void) instead of () for functiosn with no args
int foo(); means 'a function that takes any number of arguments.`
not a function that takes no arguemnts, that's spelled int foo(void);
Adopt the latter.
Sponsored by: Netflix
(cherry picked from commit e830a6cbbe8e7ab359e871b0ba95b9b025c0ffcc)