From: Jan Engelhardt Apparently this broke due to missing `struct inode' declaration. Signed-off-by: Jan Engelhardt Cc: Noah Watkins Signed-off-by: Andrew Morton --- include/linux/cdev.h | 4 ++++ 1 file changed, 4 insertions(+) diff -puN include/linux/cdev.h~cdevh-forward-declarations include/linux/cdev.h --- a/include/linux/cdev.h~cdevh-forward-declarations +++ a/include/linux/cdev.h @@ -6,6 +6,10 @@ #include #include +struct file_operations; +struct inode; +struct module; + struct cdev { struct kobject kobj; struct module *owner; _