240-3.18_fixes.patch 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --- a/tn7dsl.c
  2. +++ b/tn7dsl.c
  3. @@ -346,7 +346,7 @@
  4. static unsigned int tn7dsl_set_modulation(void* data, int flag);
  5. static void tn7dsl_ctrl_fineGain(int value);
  6. static void tn7dsl_set_fineGainValue(int value);
  7. -static int dslmod_sysctl (ctl_table * ctl, int write, struct file *filp,
  8. +static int dslmod_sysctl (struct ctl_table * ctl, int write, struct file *filp,
  9. void *buffer, size_t * lenp);
  10. static void tn7dsl_register_dslss_led(void);
  11. void tn7dsl_dslmod_sysctl_register(void);
  12. @@ -3325,7 +3325,7 @@
  13. -static int dslmod_sysctl(ctl_table *ctl, int write, struct file * filp,
  14. +static int dslmod_sysctl(struct ctl_table *ctl, int write, struct file * filp,
  15. void *buffer, size_t *lenp)
  16. {
  17. char *ptr;
  18. @@ -3451,7 +3451,7 @@
  19. }
  20. -ctl_table dslmod_table[] = {
  21. +struct ctl_table dslmod_table[] = {
  22. #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33)
  23. {DEV_DSLMOD, "dslmod", info, DSL_MOD_SIZE, 0644, NULL, NULL, &dslmod_sysctl, &sysctl_string}
  24. #else
  25. @@ -3469,7 +3469,7 @@
  26. };
  27. /* Make sure that /proc/sys/dev is there */
  28. -ctl_table dslmod_root_table[] = {
  29. +struct ctl_table dslmod_root_table[] = {
  30. #ifdef CONFIG_PROC_FS
  31. #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33)
  32. {CTL_DEV, "dev", NULL, 0, 0555, dslmod_table}