diff options
author | Jonas Gorski <jonas.gorski@gmail.com> | 2017-10-13 13:17:51 +0200 |
---|---|---|
committer | Jonas Gorski <jonas.gorski@gmail.com> | 2017-10-29 23:41:00 +0100 |
commit | fce2664f1965857077932fb6e0b50582044aa89d (patch) | |
tree | b34435f61e72eabdfd727b58c2b69c3c19aca32a /package/kernel/ar7-atm/patches-D7.04.03.00/240-3.18_fixes.patch | |
parent | 889b21f95414dcff942cb5f72d764d876b68ace2 (diff) | |
download | upstream-fce2664f1965857077932fb6e0b50582044aa89d.tar.gz upstream-fce2664f1965857077932fb6e0b50582044aa89d.tar.bz2 upstream-fce2664f1965857077932fb6e0b50582044aa89d.zip |
ar7-atm: fixup proc fixes
They were incomplete, so fix them to properly update the function signatures
to what is expected.
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
Diffstat (limited to 'package/kernel/ar7-atm/patches-D7.04.03.00/240-3.18_fixes.patch')
-rw-r--r-- | package/kernel/ar7-atm/patches-D7.04.03.00/240-3.18_fixes.patch | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/package/kernel/ar7-atm/patches-D7.04.03.00/240-3.18_fixes.patch b/package/kernel/ar7-atm/patches-D7.04.03.00/240-3.18_fixes.patch index 4588782c4f..2e69300147 100644 --- a/package/kernel/ar7-atm/patches-D7.04.03.00/240-3.18_fixes.patch +++ b/package/kernel/ar7-atm/patches-D7.04.03.00/240-3.18_fixes.patch @@ -4,18 +4,18 @@ static unsigned int tn7dsl_set_modulation(void* data, int flag); static void tn7dsl_ctrl_fineGain(int value); static void tn7dsl_set_fineGainValue(int value); --static int dslmod_sysctl (ctl_table * ctl, int write, struct file *filp, -+static int dslmod_sysctl (struct ctl_table * ctl, int write, struct file *filp, - void *buffer, size_t * lenp); +-static int dslmod_sysctl (ctl_table * ctl, int write, void *buffer, ++static int dslmod_sysctl (struct ctl_table * ctl, int write, void *buffer, + size_t * lenp, loff_t *ppos); static void tn7dsl_register_dslss_led(void); void tn7dsl_dslmod_sysctl_register(void); @@ -3308,7 +3308,7 @@ unsigned int tn7dsl_get_memory(unsigned --static int dslmod_sysctl(ctl_table *ctl, int write, struct file * filp, -+static int dslmod_sysctl(struct ctl_table *ctl, int write, struct file * filp, - void *buffer, size_t *lenp) +-static int dslmod_sysctl(ctl_table *ctl, int write, void *buffer, ++static int dslmod_sysctl(struct ctl_table *ctl, int write, void *buffer, + size_t *lenp, loff_t *ppos) { char *ptr; @@ -3423,7 +3423,7 @@ static int dslmod_sysctl(ctl_table *ctl, |