The patch titled cdev.h: forward declarations has been added to the -mm tree. Its filename is cdevh-forward-declarations.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: cdev.h: forward declarations From: Jan Engelhardt <jengelh@xxxxxxxxxxxxxxx> Apparently this broke due to missing `struct inode' declaration. Signed-off-by: Jan Engelhardt <jengelh@xxxxxx> Cc: Noah Watkins <nwatkins@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- 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 <linux/kdev_t.h> #include <linux/list.h> +struct file_operations; +struct inode; +struct module; + struct cdev { struct kobject kobj; struct module *owner; _ Patches currently in -mm which might be from jengelh@xxxxxxxxxxxxxxx are cdevh-forward-declarations.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html