Fixed broken compile of drivers/media/video/v4l2-ctrls.c. It failed due to missing #include <linux/slab.h>, and errored-out with "implicit declaration of function kzalloc, kmalloc, ..." Signed-off-by: Christopher Friedt <chrisfriedt@xxxxxxxxx> --- drivers/media/video/v4l2-ctrls.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/media/video/v4l2-ctrls.c b/drivers/media/video/v4l2-ctrls.c index 84c1a53..1d09804 100644 --- a/drivers/media/video/v4l2-ctrls.c +++ b/drivers/media/video/v4l2-ctrls.c @@ -18,6 +18,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include <linux/slab.h> #include <linux/ctype.h> #include <media/v4l2-ioctl.h> #include <media/v4l2-device.h> -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html