0
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-11-22 13:06:14 +00:00
openwrt/package/kernel/lantiq/ltq-vdsl-vr9-mei/patches/300-fix-simple-compilation-warning.patch
Hauke Mehrtens 11baab9fac lantiq: Fix compile of lantiq components with kernel 6.1
This makes the components used on the lantiq SoCs compile with kernel
6.1.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
[also fix ifxmips_ptm_adsl.c]
Signed-off-by: Martin Schiller <ms@dev.tdt.de>
2024-05-15 08:54:58 +02:00

38 lines
1.4 KiB
Diff

--- a/src/drv_mei_cpe_linux.c
+++ b/src/drv_mei_cpe_linux.c
@@ -67,7 +67,7 @@
#if (MEI_SUPPORT_DEBUG_LOGGER == 1)
#include <linux/skbuff.h>
#include <linux/netlink.h>
-#include <net/sock.h>
+#include <net/netlink.h>
#endif
/* add MEI CPE debug/printout part */
@@ -1718,8 +1718,8 @@ static void MEI_MeminfoProcPerDevGet(str
", CRC = 0x%08X"
#endif
MEI_DRV_CRLF,
- chunkIdx, pChunk[chunkIdx].pImageChunk_aligned,
- pChunk[chunkIdx].pImageChunk_allocated,
+ chunkIdx, (unsigned int)pChunk[chunkIdx].pImageChunk_aligned,
+ (unsigned int)pChunk[chunkIdx].pImageChunk_allocated,
pChunk[chunkIdx].imageChunkSize_byte,
pChunk[chunkIdx].eImageChunkType
#if (MEI_SUPPORT_OPTIMIZED_FW_DL == 1)
--- a/src/drv_mei_cpe_download_vrx.c
+++ b/src/drv_mei_cpe_download_vrx.c
@@ -3139,9 +3139,9 @@ IFX_int32_t MEI_DEV_IoctlFirmwareDownloa
{
IFX_int32_t ret = 0;
MEI_DEV_T *pMeiDev = pMeiDynCntrl->pMeiDev;
-#if (MEI_EXPORT_INTERNAL_API == 1) && (MEI_DRV_ATM_PTM_INTERFACE_ENABLE == 1)
- MEI_TC_Reset_t tc_reset = {0};
-#endif
+// #if (MEI_EXPORT_INTERNAL_API == 1) && (MEI_DRV_ATM_PTM_INTERFACE_ENABLE == 1)
+// MEI_TC_Reset_t tc_reset = {0};
+// #endif
#if (MEI_SUPPORT_OPTIMIZED_FW_DL == 1)
IFX_boolean_t bChunksReuse = IFX_FALSE;
#endif