backports: add missing linux/mm.h to airspy
authorHauke Mehrtens <hauke@hauke-m.de>
Sun, 27 Jul 2014 20:45:04 +0000 (22:45 +0200)
committerHauke Mehrtens <hauke@hauke-m.de>
Sun, 27 Jul 2014 21:49:11 +0000 (23:49 +0200)
Without this patch I get the following error message when compiling
against kernel 3.2, all other kernel versions work:

3.2.60/drivers/media/usb/airspy/airspy.c: In function ‘airspy_queue_setup’:
3.2.60/drivers/media/usb/airspy/airspy.c:506:2: error: implicit declaration of function ‘PAGE_ALIGN’ [-Werror=implicit-function-declaration]
sizes[0] = PAGE_ALIGN(s->buffersize);

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
patches/collateral-evolutions/media/0004-missing-include/airspy.patch [new file with mode: 0644]

diff --git a/patches/collateral-evolutions/media/0004-missing-include/airspy.patch b/patches/collateral-evolutions/media/0004-missing-include/airspy.patch
new file mode 100644 (file)
index 0000000..ee31d01
--- /dev/null
@@ -0,0 +1,18 @@
+Without this patch I get the following error message when compiling 
+against kernel 3.2, all other kernel versions work:
+
+3.2.60/drivers/media/usb/airspy/airspy.c: In function ‘airspy_queue_setup’:
+3.2.60/drivers/media/usb/airspy/airspy.c:506:2: error: implicit declaration of function ‘PAGE_ALIGN’ [-Werror=implicit-function-declaration]
+sizes[0] = PAGE_ALIGN(s->buffersize);
+
+
+--- a/drivers/media/usb/airspy/airspy.c
++++ b/drivers/media/usb/airspy/airspy.c
+@@ -16,6 +16,7 @@
+ #include <linux/module.h>
+ #include <linux/slab.h>
++#include <linux/mm.h>
+ #include <linux/usb.h>
+ #include <media/v4l2-device.h>
+ #include <media/v4l2-ioctl.h>