Compat-wireless-2.6: Updated to fix bluetooth patch error
Keep the patch in step with the linux-next tree after the following
patch merged.
commit
971beb83aeb2a309175682cf5683d64fd4591841
Author: Roel Kluin <roel.kluin@gmail.com>
Date: Mon Dec 7 14:23:21 2009 +0100
Bluetooth: Fix PTR_ERR return of wrong pointer in hidp_setup_hid()
Return the PTR_ERR of the correct pointer.
Signed-off-by: Huaxu Wan <huaxu.wan@linux.intel.com>
+#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,27))
hid = hid_allocate_device();
if (IS_ERR(hid))
- return PTR_ERR(session->hid);
+ return PTR_ERR(hid);
+#endif
session->hid = hid;