The patch titled Move linux/device.h include in linux/atmdev.h to #ifdef __KERNEL__ section has been removed from the -mm tree. Its filename is move-linux-deviceh-include-in-linux-atmdevh-to.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Move linux/device.h include in linux/atmdev.h to #ifdef __KERNEL__ section From: Ismail Donmez <ismail@xxxxxxxxxxxxx> linux/device.h header is not included in the David Woodhouse's kernel-headers git tree which is used for userspace kernel headers. Which results in compile errors when building iproute2. Attached patch moves linux/device.h include under the #ifdef __KERNEL__ section. Signed-off-by: Ismail Donmez <ismail@xxxxxxxxxxxxx> Signed-off-by: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/atmdev.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/atmdev.h~move-linux-deviceh-include-in-linux-atmdevh-to include/linux/atmdev.h --- a/include/linux/atmdev.h~move-linux-deviceh-include-in-linux-atmdevh-to +++ a/include/linux/atmdev.h @@ -7,7 +7,6 @@ #define LINUX_ATMDEV_H -#include <linux/device.h> #include <linux/atmapi.h> #include <linux/atm.h> #include <linux/atmioc.h> @@ -210,6 +209,7 @@ struct atm_cirange { #ifdef __KERNEL__ +#include <linux/device.h> #include <linux/wait.h> /* wait_queue_head_t */ #include <linux/time.h> /* struct timeval */ #include <linux/net.h> _ Patches currently in -mm which might be from ismail@xxxxxxxxxxxxx are origin.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