On Fri, Dec 31, 2021 at 10:55:27PM +0530, Abdun Nihaal wrote: > Remove unneeded return variables in ioctl_linux.c that are initialized > to 0 and are not assigned after. Instead, return 0 directly. Almost all of these should not be returning a value at all, if they can not fail and no one checks the values, right? Please fix this up to be functions that return void, as that's the correct thing to do here. thanks, greg k-h