diff options
author | Nicolas Thill <nico@openwrt.org> | 2008-08-14 10:53:12 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2008-08-14 10:53:12 +0000 |
commit | 58fb9f67ec9a60b808225a83dcbeeed227eb413a (patch) | |
tree | e537a0b118b2c5852b08ebc8b3dc31cc88a72c99 /package/qc-usb/patches/001-linux_2_6.patch | |
parent | 68bdb682471a05bf1d00f621292e3e23bd7d7ed6 (diff) | |
download | upstream-58fb9f67ec9a60b808225a83dcbeeed227eb413a.tar.gz upstream-58fb9f67ec9a60b808225a83dcbeeed227eb413a.tar.bz2 upstream-58fb9f67ec9a60b808225a83dcbeeed227eb413a.zip |
move qc-usb from trunk to packages as well (see [12260])
SVN-Revision: 12304
Diffstat (limited to 'package/qc-usb/patches/001-linux_2_6.patch')
-rw-r--r-- | package/qc-usb/patches/001-linux_2_6.patch | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/package/qc-usb/patches/001-linux_2_6.patch b/package/qc-usb/patches/001-linux_2_6.patch deleted file mode 100644 index 34c73c4d30..0000000000 --- a/package/qc-usb/patches/001-linux_2_6.patch +++ /dev/null @@ -1,44 +0,0 @@ ---- a/qc-driver.c -+++ b/qc-driver.c -@@ -821,7 +821,9 @@ - if (!cr) goto fail2; - urb->transfer_buffer = kmalloc(qc_i2c_maxbufsize*sizeof(u8), GFP_KERNEL); /* Allocate maximum ever needed */ - if (!urb->transfer_buffer) goto fail3; -+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24) - spin_lock_init(&urb->lock); -+#endif - urb->complete = qc_i2c_handler; - urb->context = qc; - #if (LINUX_VERSION_CODE<KERNEL_VERSION(2,6,9) && !defined(CONFIG_SUSE_KERNEL)) || LINUX_VERSION_CODE<KERNEL_VERSION(2,6,8) -@@ -3006,7 +3008,9 @@ - static struct video_device qc_v4l_template = { - name: "QuickCam USB", - type: VID_TYPE_CAPTURE | VID_TYPE_SUBCAPTURE, -+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23) - hardware: VID_HARDWARE_QCAM_USB, -+#endif - minor: -1, - #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0) - release: qc_v4l_release, ---- a/qc-memory.c -+++ b/qc-memory.c -@@ -78,15 +78,19 @@ - #endif - - #if LINUX_VERSION_CODE>=KERNEL_VERSION(2,5,3) || defined(pte_offset_map) -+#ifndef pte_offset - #define pte_offset(pmd,adr) pte_offset_map(pmd,adr) /* Emulation for a kernel using the new rmap-vm */ -+#endif - #endif /* Fix by Michele Balistreri <brain87@gmx.net> */ - -+#ifndef SETPAGEFLAG - #ifndef SetPageReserved - #define SetPageReserved(p) mem_map_reserve(p) - #endif - #ifndef ClearPageReserved - #define ClearPageReserved(p) mem_map_unreserve(p) - #endif -+#endif /* SETPAGEFLAG */ - /* }}} */ - - /* {{{ [fold] kvirt_to_pa(): obtain physical address from virtual address obtained by vmalloc() */ |