aboutsummaryrefslogtreecommitdiff
path: root/package/kernel/lantiq/ltq-vdsl-vr9-mei/patches/300-fix-simple-compilation-warning.patch
blob: e9f1931227f824d52ff17c787c457dedbf46f42c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
--- 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(struct seq_file *s)
                      ", 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_IoctlFirmwareDownload(
 {
    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