aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/lantiq/ltq-tapi/patches/601-fix-compilation-warning-ret-not-handled.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/kernel/lantiq/ltq-tapi/patches/601-fix-compilation-warning-ret-not-handled.patch')
-rw-r--r--package/kernel/lantiq/ltq-tapi/patches/601-fix-compilation-warning-ret-not-handled.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/package/kernel/lantiq/ltq-tapi/patches/601-fix-compilation-warning-ret-not-handled.patch b/package/kernel/lantiq/ltq-tapi/patches/601-fix-compilation-warning-ret-not-handled.patch
new file mode 100644
index 0000000000..b97ced30f8
--- /dev/null
+++ b/package/kernel/lantiq/ltq-tapi/patches/601-fix-compilation-warning-ret-not-handled.patch
@@ -0,0 +1,12 @@
+--- a/src/drv_tapi_ioctl.c
++++ b/src/drv_tapi_ioctl.c
+@@ -702,7 +702,8 @@ static IFX_int32_t TAPI_IoctlDev (IFX_TAPI_DRV_CTX_t* pDrvCtx,
+
+ if (ret == TAPI_statusOk || ret == 1)
+ {
+- copy_to_user ((IFX_void_t*)ioarg, p_tmp, sizeof(IFX_TAPI_CAP_t));
++ if (copy_to_user ((IFX_void_t*)ioarg, p_tmp, sizeof(IFX_TAPI_CAP_t)))
++ ret = TAPI_statusErrKernCpy;
+ }
+ }
+ TAPI_OS_Free (p_tmp);