summaryrefslogtreecommitdiff
path: root/package/kernel/lantiq/ltq-ptm/patches/101-fix-more-compilation-warning-debugfs.patch
blob: f854662a07840a8439f18c6b9d1e4385958cd6e0 (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
38
--- a/ifxmips_ptm_adsl.c
+++ b/ifxmips_ptm_adsl.c
@@ -180,7 +180,7 @@ static int proc_read_version(char *, char **, off_t, int, int *, void *);
 static int proc_read_wanmib(char *, char **, off_t, int, int *, void *);
 static int proc_write_wanmib(struct file *, const char *, unsigned long, void *);
 #endif
-#if defined(ENABLE_FW_PROC) && ENABLE_FW_PROC
+#if defined(ENABLE_FW_PROC) && ENABLE_FW_PROC && defined(ENABLE_DBG_PROC) && ENABLE_DBG_PROC
   static int proc_read_genconf(char *, char **, off_t, int, int *, void *);
 #endif
 #if defined(ENABLE_DBG_PROC) && ENABLE_DBG_PROC
@@ -191,8 +191,8 @@ static int proc_write_wanmib(struct file *, const char *, unsigned long, void *)
 /*
  *  Proc Help Functions
  */
-static INLINE int stricmp(const char *, const char *);
 #if defined(ENABLE_DBG_PROC) && ENABLE_DBG_PROC
+  static INLINE int stricmp(const char *, const char *);
   static INLINE int strincmp(const char *, const char *, int);
 #endif
 static INLINE int ifx_ptm_version(char *);
@@ -1159,8 +1159,6 @@ static int proc_write_dbg(struct file *file, const char *buf, unsigned long coun
     return count;
 }
 
-#endif  //  defined(ENABLE_DBG_PROC) && ENABLE_DBG_PROC
-
 static INLINE int stricmp(const char *p1, const char *p2)
 {
     int c1, c2;
@@ -1178,7 +1176,6 @@ static INLINE int stricmp(const char *p1, const char *p2)
     return *p1 - *p2;
 }
 
-#if defined(ENABLE_DBG_PROC) && ENABLE_DBG_PROC
 static INLINE int strincmp(const char *p1, const char *p2, int n)
 {
     int c1 = 0, c2;