Author: blogic
Date: 2015-07-24 11:09:02 +0200 (Fri, 24 Jul 2015)
New Revision: 46452

Modified:
   trunk/package/kernel/lantiq/ltq-ifxos/patches/100-compat.patch
Log:
lantiq: Fix ifxos driver on linux 4.1

request_mem_region returns NULL when requesting the region failed, and
a valid pointer when it was successful. Currently the condition is
inverted.

Signed-off-by: Martin Blumenstingl <[email protected]>

Modified: trunk/package/kernel/lantiq/ltq-ifxos/patches/100-compat.patch
===================================================================
--- trunk/package/kernel/lantiq/ltq-ifxos/patches/100-compat.patch      
2015-07-24 09:08:57 UTC (rev 46451)
+++ trunk/package/kernel/lantiq/ltq-ifxos/patches/100-compat.patch      
2015-07-24 09:09:02 UTC (rev 46452)
@@ -157,7 +157,7 @@
     /* can't fail */
     request_mem_region(physicalAddr, addrRangeSize_byte, pName);
 +#else
-+   if ( request_mem_region(physicalAddr, addrRangeSize_byte, pName) )
++   if ( !request_mem_region(physicalAddr, addrRangeSize_byte, pName) )
 +   {
 +      IFXOS_PRN_USR_ERR_NL( IFXOS, IFXOS_PRN_LEVEL_ERR,
 +         ("IFXOS: ERROR Phy2Virt map, region request - addr 0x%08lX (size 
0x%lX) not free" IFXOS_CRLF,
_______________________________________________
openwrt-commits mailing list
[email protected]
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits

Reply via email to