2015-02-09 12:12:09 +00:00
|
|
|
--- a/tn7dsl.c
|
|
|
|
+++ b/tn7dsl.c
|
2017-10-13 09:32:31 +00:00
|
|
|
@@ -333,7 +333,7 @@ static void tn7dsl_chng_modulation(void*
|
2015-02-09 12:12:09 +00:00
|
|
|
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 void tn7dsl_register_dslss_led(void);
|
|
|
|
void tn7dsl_dslmod_sysctl_register(void);
|
2017-10-13 09:32:31 +00:00
|
|
|
@@ -3308,7 +3308,7 @@ unsigned int tn7dsl_get_memory(unsigned
|
2015-02-09 12:12:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-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)
|
|
|
|
{
|
|
|
|
char *ptr;
|
2017-10-13 09:32:31 +00:00
|
|
|
@@ -3423,7 +3423,7 @@ static int dslmod_sysctl(ctl_table *ctl,
|
2015-02-09 12:12:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
-ctl_table dslmod_table[] = {
|
|
|
|
+struct ctl_table dslmod_table[] = {
|
2017-10-13 09:32:31 +00:00
|
|
|
{
|
|
|
|
.procname = "dslmod",
|
|
|
|
.data = info,
|
|
|
|
@@ -3437,7 +3437,7 @@ ctl_table dslmod_table[] = {
|
2015-02-09 12:12:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Make sure that /proc/sys/dev is there */
|
|
|
|
-ctl_table dslmod_root_table[] = {
|
|
|
|
+struct ctl_table dslmod_root_table[] = {
|
|
|
|
#ifdef CONFIG_PROC_FS
|
2017-10-13 09:32:31 +00:00
|
|
|
{
|
|
|
|
.procname = "dev",
|