ar7-atm: drop LINUX_VERSION tests

Minimum supported kernel is 3.18, so we don't need to test for anything
older. In addition, the API hasn't changed since then, so we don't need
to check for any kernel version at all.  This helps to keeps the amount
of changes more managable.

Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
Jonas Gorski 7 years ago
parent b00cf0e58e
commit 889b21f954

@ -1,30 +1,19 @@
--- a/tn7dsl.c --- a/tn7dsl.c
+++ b/tn7dsl.c +++ b/tn7dsl.c
@@ -109,6 +109,7 @@ @@ -446,7 +446,6 @@ static void avsar_release(struct device
#include <linux/vmalloc.h>
#include <linux/file.h>
#include <linux/firmware.h>
+#include <linux/version.h>
#include <asm/io.h>
#include <asm/ar7/ar7.h>
@@ -446,7 +447,9 @@ static void avsar_release(struct device
} }
static struct device avsar = { static struct device avsar = {
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30) - .bus_id = "vlynq",
.bus_id = "vlynq",
+#endif
.release = avsar_release, .release = avsar_release,
}; };
@@ -455,6 +458,9 @@ int shim_osLoadFWImage(unsigned char *pt @@ -455,6 +454,8 @@ int shim_osLoadFWImage(unsigned char *pt
const struct firmware *fw_entry; const struct firmware *fw_entry;
size_t size; size_t size;
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,30)
+ dev_set_name(&avsar, "avsar"); + dev_set_name(&avsar, "avsar");
+#endif +
printk("requesting firmware image \"ar0700xx.bin\"\n"); printk("requesting firmware image \"ar0700xx.bin\"\n");
if(device_register(&avsar) < 0) { if(device_register(&avsar) < 0) {
printk(KERN_ERR printk(KERN_ERR

@ -1,54 +1,39 @@
--- a/tn7atm.c --- a/tn7atm.c
+++ b/tn7atm.c +++ b/tn7atm.c
@@ -71,10 +71,16 @@ @@ -73,8 +73,8 @@
#include <linux/proc_fs.h>
#include <linux/string.h>
#include <linux/ctype.h> #include <linux/ctype.h>
+#include <linux/version.h>
#include <asm/io.h> #include <asm/io.h>
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,31) -#include <asm/ar7/ar7.h>
#include <asm/ar7/ar7.h> -#include <asm/ar7/prom.h>
#include <asm/ar7/prom.h>
+#else
+#include <asm/mach-ar7/ar7.h> +#include <asm/mach-ar7/ar7.h>
+#include <asm/mach-ar7/prom.h> +#include <asm/mach-ar7/prom.h>
+#endif
#include "dsl_hal_api.h" #include "dsl_hal_api.h"
#include "tn7atm.h" #include "tn7atm.h"
--- a/tn7dsl.c --- a/tn7dsl.c
+++ b/tn7dsl.c +++ b/tn7dsl.c
@@ -112,8 +112,13 @@ @@ -111,8 +111,8 @@
#include <linux/version.h> #include <linux/firmware.h>
#include <asm/io.h> #include <asm/io.h>
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,31) -#include <asm/ar7/ar7.h>
#include <asm/ar7/ar7.h> -#include <asm/ar7/prom.h>
#include <asm/ar7/prom.h>
+#else
+#include <asm/mach-ar7/ar7.h> +#include <asm/mach-ar7/ar7.h>
+#include <asm/mach-ar7/prom.h> +#include <asm/mach-ar7/prom.h>
+#endif
/* Modules specific header files */ /* Modules specific header files */
#include "tn7atm.h" #include "tn7atm.h"
--- a/tn7sar.c --- a/tn7sar.c
+++ b/tn7sar.c +++ b/tn7sar.c
@@ -52,10 +52,16 @@ @@ -54,8 +54,8 @@
#include <linux/proc_fs.h>
#include <linux/string.h>
#include <linux/ctype.h> #include <linux/ctype.h>
+#include <linux/version.h>
#include <asm/io.h> #include <asm/io.h>
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,31) -#include <asm/ar7/ar7.h>
#include <asm/ar7/ar7.h> -#include <asm/ar7/prom.h>
#include <asm/ar7/prom.h>
+#else
+#include <asm/mach-ar7/ar7.h> +#include <asm/mach-ar7/ar7.h>
+#include <asm/mach-ar7/prom.h> +#include <asm/mach-ar7/prom.h>
+#endif
#define _CPHAL_AAL5 #define _CPHAL_AAL5
#define _CPHAL_SAR #define _CPHAL_SAR

@ -1,53 +1,39 @@
--- a/tn7dsl.c --- a/tn7dsl.c
+++ b/tn7dsl.c +++ b/tn7dsl.c
@@ -203,7 +203,11 @@ led_reg_t ledreg[2]; @@ -197,7 +197,7 @@ led_reg_t ledreg[2];
static struct led_funcs ledreg[2]; static struct led_funcs ledreg[2];
#endif #endif
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33) -#define DEV_DSLMOD CTL_UNNUMBERED
#define DEV_DSLMOD CTL_UNNUMBERED
+#else
+#define DEV_DSLMOD 0 +#define DEV_DSLMOD 0
+#endif
#define MAX_STR_SIZE 256 #define MAX_STR_SIZE 256
#define DSL_MOD_SIZE 256 #define DSL_MOD_SIZE 256
@@ -3431,9 +3435,16 @@ static int dslmod_sysctl(ctl_table *ctl, @@ -3421,9 +3421,9 @@ static int dslmod_sysctl(ctl_table *ctl,
*/ */
if(write) if(write)
{ {
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,32) - ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
-
+#else
+ ret = proc_dostring(ctl, write, buffer, lenp, 0); + ret = proc_dostring(ctl, write, buffer, lenp, 0);
+#endif
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33) - switch (ctl->ctl_name)
switch (ctl->ctl_name)
+#else
+ switch ((long)ctl->extra2) + switch ((long)ctl->extra2)
+#endif
{ {
case DEV_DSLMOD: case DEV_DSLMOD:
ptr = strpbrk(info, " \t"); ptr = strpbrk(info, " \t");
@@ -3517,14 +3528,29 @@ static int dslmod_sysctl(ctl_table *ctl, @@ -3507,14 +3507,21 @@ static int dslmod_sysctl(ctl_table *ctl,
else else
{ {
len += sprintf(info+len, mod_req); len += sprintf(info+len, mod_req);
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,32) - ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
+#else
+ ret = proc_dostring(ctl, write, buffer, lenp, 0); + ret = proc_dostring(ctl, write, buffer, lenp, 0);
+#endif
} }
return ret; return ret;
} }
ctl_table dslmod_table[] = { ctl_table dslmod_table[] = {
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33) - {DEV_DSLMOD, "dslmod", info, DSL_MOD_SIZE, 0644, NULL, NULL, &dslmod_sysctl, &sysctl_string}
{DEV_DSLMOD, "dslmod", info, DSL_MOD_SIZE, 0644, NULL, NULL, &dslmod_sysctl, &sysctl_string}
+#else
+ { + {
+ .procname = "dslmod", + .procname = "dslmod",
+ .data = info, + .data = info,
@ -56,24 +42,20 @@
+ .proc_handler = &dslmod_sysctl, + .proc_handler = &dslmod_sysctl,
+ .extra2 = (void *)DEV_DSLMOD, + .extra2 = (void *)DEV_DSLMOD,
+ } + }
+#endif
, ,
{0} {0}
}; };
@@ -3532,7 +3558,16 @@ ctl_table dslmod_table[] = { @@ -3522,7 +3529,12 @@ ctl_table dslmod_table[] = {
/* Make sure that /proc/sys/dev is there */ /* Make sure that /proc/sys/dev is there */
ctl_table dslmod_root_table[] = { ctl_table dslmod_root_table[] = {
#ifdef CONFIG_PROC_FS #ifdef CONFIG_PROC_FS
+ #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33) - {CTL_DEV, "dev", NULL, 0, 0555, dslmod_table}
{CTL_DEV, "dev", NULL, 0, 0555, dslmod_table}
+ #else
+ { + {
+ .procname = "dev", + .procname = "dev",
+ .maxlen = 0, + .maxlen = 0,
+ .mode = 0555, + .mode = 0555,
+ .child = dslmod_table, + .child = dslmod_table,
+ } + }
+ #endif
, ,
#endif /* CONFIG_PROC_FS */ #endif /* CONFIG_PROC_FS */
{0} {0}

@ -1,28 +1,24 @@
--- a/tn7atm.c --- a/tn7atm.c
+++ b/tn7atm.c +++ b/tn7atm.c
@@ -1876,7 +1876,11 @@ static int __init tn7atm_register (Tn7At @@ -1870,7 +1870,7 @@ static int __init tn7atm_register (Tn7At
dgprintf (4, "device %s being registered\n", priv->name); dgprintf (4, "device %s being registered\n", priv->name);
+ #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,37) - mydev = atm_dev_register (priv->proc_name, &tn7atm_ops, -1, NULL);
mydev = atm_dev_register (priv->proc_name, &tn7atm_ops, -1, NULL);
+ #else
+ mydev = atm_dev_register (priv->proc_name, NULL, &tn7atm_ops, -1, NULL); + mydev = atm_dev_register (priv->proc_name, NULL, &tn7atm_ops, -1, NULL);
+ #endif
if (mydev == NULL) if (mydev == NULL)
{ {
--- a/tn7dsl.c --- a/tn7dsl.c
+++ b/tn7dsl.c +++ b/tn7dsl.c
@@ -466,14 +466,17 @@ int shim_osLoadFWImage(unsigned char *pt @@ -453,13 +453,16 @@ int shim_osLoadFWImage(unsigned char *pt
{ {
const struct firmware *fw_entry; const struct firmware *fw_entry;
size_t size; size_t size;
+ int ret; + int ret;
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,30)
dev_set_name(&avsar, "avsar"); dev_set_name(&avsar, "avsar");
#endif
printk("requesting firmware image \"ar0700xx.bin\"\n"); printk("requesting firmware image \"ar0700xx.bin\"\n");
- if(device_register(&avsar) < 0) { - if(device_register(&avsar) < 0) {
+ dev_set_name(&avsar, "avsar"); + dev_set_name(&avsar, "avsar");

@ -116,7 +116,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
#endif __SGAPI_H #endif __SGAPI_H
--- a/tn7atm.c --- a/tn7atm.c
+++ b/tn7atm.c +++ b/tn7atm.c
@@ -277,25 +277,15 @@ static int tn7atm_change_qos (struct atm @@ -271,25 +271,15 @@ static int tn7atm_change_qos (struct atm
static int tn7atm_detect (void); static int tn7atm_detect (void);
static int tn7atm_init (struct atm_dev *dev); static int tn7atm_init (struct atm_dev *dev);
static int tn7atm_irq_request (struct atm_dev *dev); static int tn7atm_irq_request (struct atm_dev *dev);
@ -147,15 +147,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
//CT - Added function to return chipset Id //CT - Added function to return chipset Id
void tn7atm_get_chipsetId (char *pVerId); void tn7atm_get_chipsetId (char *pVerId);
@@ -415,63 +405,67 @@ const char drv_proc_root_folder[] = "ava @@ -412,60 +402,59 @@ static int proc_root_already_exists = TR
static struct proc_dir_entry *root_proc_dir_entry = NULL;
#define DRV_PROC_MODE 0644
static int proc_root_already_exists = TRUE;
+
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
+#define PDE_DATA(inode) PDE(inode)->data
+#endif
+
static struct static struct
{ {
const unsigned char name[32]; const unsigned char name[32];
@ -250,7 +242,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
}; };
/* *INDENT-ON* */ /* *INDENT-ON* */
@@ -1709,75 +1703,81 @@ int tn7atm_receive (void *os_dev, int ch @@ -1703,75 +1692,81 @@ int tn7atm_receive (void *os_dev, int ch
return 0; return 0;
} }
@ -301,15 +293,15 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
- return len; - return len;
+ return 0; + return 0;
+}
+
+static int tn7atm_proc_channels_open(struct inode *inode, struct file *file)
+{
+ return single_open(file, tn7atm_proc_channels, PDE_DATA(inode));
} }
-static int tn7atm_proc_private (char *buf, char **start, off_t offset, -static int tn7atm_proc_private (char *buf, char **start, off_t offset,
- int count, int *eof, void *data) - int count, int *eof, void *data)
+static int tn7atm_proc_channels_open(struct inode *inode, struct file *file)
+{
+ return single_open(file, tn7atm_proc_channels, PDE_DATA(inode));
+}
+
+static struct file_operations tn7atm_proc_channels_fops = { +static struct file_operations tn7atm_proc_channels_fops = {
+ .owner = THIS_MODULE, + .owner = THIS_MODULE,
+ .open = tn7atm_proc_channels_open, + .open = tn7atm_proc_channels_open,
@ -353,11 +345,11 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
+ +
+ seq_printf (m, "tx_irq: %02d", priv->sar_irq); + seq_printf (m, "tx_irq: %02d", priv->sar_irq);
+ seq_printf (m, "rx_irq: %02d", priv->dsl_irq); + seq_printf (m, "rx_irq: %02d", priv->dsl_irq);
+
- return len;
+ return 0; + return 0;
+} +}
+
- return len;
+static int tn7atm_proc_private_open(struct inode *inode, struct file *file) +static int tn7atm_proc_private_open(struct inode *inode, struct file *file)
+{ +{
+ return single_open(file, tn7atm_proc_private, PDE_DATA(inode)); + return single_open(file, tn7atm_proc_private, PDE_DATA(inode));
@ -374,7 +366,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
void tn7atm_sarhal_isr_register (void *os_dev, void *hal_isr, void tn7atm_sarhal_isr_register (void *os_dev, void *hal_isr,
int interrupt_num) int interrupt_num)
{ {
@@ -1900,10 +1900,8 @@ static int __init tn7atm_register (Tn7At @@ -1890,10 +1885,8 @@ static int __init tn7atm_register (Tn7At
return ATM_REG_OK; return ATM_REG_OK;
} }
@ -386,7 +378,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
char dslVer[8]; char dslVer[8];
char dspVer[10]; char dspVer[10];
char chipsetID[32]; //CT CQ10076 - Added temporary buffer to store chipset Id char chipsetID[32]; //CT CQ10076 - Added temporary buffer to store chipset Id
@@ -1914,56 +1912,64 @@ static int tn7atm_proc_version (char *bu @@ -1904,56 +1897,64 @@ static int tn7atm_proc_version (char *bu
priv = mydev->dev_data; priv = mydev->dev_data;
@ -472,7 +464,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
int ctr; int ctr;
const char *residual; const char *residual;
@@ -2012,24 +2018,7 @@ static int __init tn7atm_detect (void) @@ -2002,24 +2003,7 @@ static int __init tn7atm_detect (void)
*/ */
for (ctr = 0; ctr < (NUM_ELEMS (proc_if)); ctr++) for (ctr = 0; ctr < (NUM_ELEMS (proc_if)); ctr++)
{ {
@ -498,7 +490,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
} }
tn7dsl_dslmod_sysctl_register (); tn7dsl_dslmod_sysctl_register ();
@@ -2501,63 +2490,10 @@ static int tn7atm_set_can_support_adsl2 @@ -2491,63 +2475,10 @@ static int tn7atm_set_can_support_adsl2
return TRUE; return TRUE;
} }
@ -564,7 +556,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
} }
static int tn7atm_proc_qos_write(struct file *fp, const char *buf, unsigned long count, void *data) static int tn7atm_proc_qos_write(struct file *fp, const char *buf, unsigned long count, void *data)
@@ -2591,5 +2527,19 @@ static int tn7atm_proc_qos_write(struct @@ -2581,5 +2512,19 @@ static int tn7atm_proc_qos_write(struct
return count; return count;
} }
@ -586,17 +578,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
module_exit (tn7atm_exit); module_exit (tn7atm_exit);
--- a/tn7dsl.c --- a/tn7dsl.c
+++ b/tn7dsl.c +++ b/tn7dsl.c
@@ -221,6 +221,9 @@ static struct led_funcs ledreg[2]; @@ -339,7 +339,7 @@ static void tn7dsl_register_dslss_led(vo
#define tn7dsl_kfree_skb(x) dev_kfree_skb(x)
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
+#define PDE_DATA(inode) PDE(inode)->data
+#endif
//---------------------------------------------
// Begin Clear EOC definitions
@@ -349,7 +352,7 @@ static void tn7dsl_register_dslss_led(vo
void tn7dsl_dslmod_sysctl_register(void); void tn7dsl_dslmod_sysctl_register(void);
void tn7dsl_dslmod_sysctl_unregister(void); void tn7dsl_dslmod_sysctl_unregister(void);
static int tn7dsl_clear_eoc_receive(void); static int tn7dsl_clear_eoc_receive(void);
@ -605,7 +587,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
/* end of internal functions */ /* end of internal functions */
// UR8_MERGE_START CQ11054 Jack Zhang // UR8_MERGE_START CQ11054 Jack Zhang
@@ -649,11 +652,9 @@ void shim_osCriticalExit(void) @@ -635,11 +635,9 @@ void shim_osCriticalExit(void)
spin_unlock_irqrestore(&shimLock, flags); spin_unlock_irqrestore(&shimLock, flags);
} }
@ -618,7 +600,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
int i, j; int i, j;
int bin = (int) data; int bin = (int) data;
unsigned short *rxSnrPerBin; unsigned short *rxSnrPerBin;
@@ -674,95 +675,128 @@ static int tn7dsl_proc_snr_print (char * @@ -660,95 +658,128 @@ static int tn7dsl_proc_snr_print (char *
break; break;
default: default:
@ -791,7 +773,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
#ifndef NO_ACT #ifndef NO_ACT
int tn7dsl_proc_ds_noise(char* buf, char **start, off_t offset, int count, int tn7dsl_proc_ds_noise(char* buf, char **start, off_t offset, int count,
int *eof, void *data) int *eof, void *data)
@@ -825,59 +859,48 @@ static char *pUnknown= "Unknown"; @@ -811,59 +842,48 @@ static char *pUnknown= "Unknown";
#ifdef ADV_DIAG_STATS //CQ10275, CQ10449 #ifdef ADV_DIAG_STATS //CQ10275, CQ10449
//UR8_MERGE_START CQ10449 Jack Zhang //UR8_MERGE_START CQ10449 Jack Zhang
@ -874,7 +856,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
{ {
int len = 0; int len = 0;
int i = 0; int i = 0;
@@ -886,66 +909,53 @@ static int proc_adv_stats_header(char* b @@ -872,66 +892,53 @@ static int proc_adv_stats_header(char* b
*/ */
dslhal_api_gatherStatistics(pIhw); dslhal_api_gatherStatistics(pIhw);
@ -963,7 +945,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
} }
static int getDiagDisplayMode() static int getDiagDisplayMode()
@@ -968,29 +978,24 @@ static int getDiagDisplayMode() @@ -954,29 +961,24 @@ static int getDiagDisplayMode()
ret = 2; ret = 2;
return ret; return ret;
} }
@ -998,7 +980,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
(unsigned int)pIhw->AppData.BitAllocTblDstrm[i], (unsigned int)pIhw->AppData.BitAllocTblDstrm[i],
(unsigned int)pIhw->AppData.marginTblDstrm[i], (unsigned int)pIhw->AppData.marginTblDstrm[i],
(int)pIhw->AppData.rxSnrPerBin0[i]); (int)pIhw->AppData.rxSnrPerBin0[i]);
@@ -1001,26 +1006,34 @@ int tn7dsl_proc_adv_stats1(char* buf, ch @@ -987,26 +989,34 @@ int tn7dsl_proc_adv_stats1(char* buf, ch
if (dslhal_api_getSNRpsds(pIhw, SNRpsds, 1)) if (dslhal_api_getSNRpsds(pIhw, SNRpsds, 1))
{ {
dgprintf(4, "dslhal_api_getSNRpsds failed!\n"); dgprintf(4, "dslhal_api_getSNRpsds failed!\n");
@ -1041,7 +1023,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
int i; int i;
int mode = 0; //mode = 0 => ADSL1 or ADSL2 & 2+ int mode = 0; //mode = 0 => ADSL1 or ADSL2 & 2+
unsigned char SNRpsds[512]; unsigned char SNRpsds[512];
@@ -1030,12 +1043,10 @@ int tn7dsl_proc_adv_stats2(char* buf, ch @@ -1016,12 +1026,10 @@ int tn7dsl_proc_adv_stats2(char* buf, ch
if( mode==1) //ADSL1 if( mode==1) //ADSL1
{ {
dslhal_api_gatherStatistics(pIhw); dslhal_api_gatherStatistics(pIhw);
@ -1056,7 +1038,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
(unsigned int)pIhw->AppData.BitAllocTblDstrm[i], (unsigned int)pIhw->AppData.BitAllocTblDstrm[i],
(unsigned int)pIhw->AppData.marginTblDstrm[i], (unsigned int)pIhw->AppData.marginTblDstrm[i],
(int)pIhw->AppData.rxSnrPerBin0[i]); (int)pIhw->AppData.rxSnrPerBin0[i]);
@@ -1046,26 +1057,35 @@ int tn7dsl_proc_adv_stats2(char* buf, ch @@ -1032,26 +1040,35 @@ int tn7dsl_proc_adv_stats2(char* buf, ch
if (dslhal_api_getSNRpsds(pIhw, SNRpsds, 1)) if (dslhal_api_getSNRpsds(pIhw, SNRpsds, 1))
{ {
dgprintf(4, "dslhal_api_getSNRpsds failed!\n"); dgprintf(4, "dslhal_api_getSNRpsds failed!\n");
@ -1100,7 +1082,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
int i; int i;
int mode = 0; //mode = 0 => ADSL1 or ADSL2 & 2+ int mode = 0; //mode = 0 => ADSL1 or ADSL2 & 2+
unsigned char SNRpsds[512]; unsigned char SNRpsds[512];
@@ -1075,12 +1095,10 @@ int tn7dsl_proc_adv_stats3(char* buf, ch @@ -1061,12 +1078,10 @@ int tn7dsl_proc_adv_stats3(char* buf, ch
if( mode==1) //ADSL1 if( mode==1) //ADSL1
{ {
dslhal_api_gatherStatistics(pIhw); dslhal_api_gatherStatistics(pIhw);
@ -1115,7 +1097,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
(unsigned int)pIhw->AppData.BitAllocTblDstrm[i], (unsigned int)pIhw->AppData.BitAllocTblDstrm[i],
(unsigned int)pIhw->AppData.marginTblDstrm[i], (unsigned int)pIhw->AppData.marginTblDstrm[i],
(int)pIhw->AppData.rxSnrPerBin0[i]); (int)pIhw->AppData.rxSnrPerBin0[i]);
@@ -1091,283 +1109,287 @@ int tn7dsl_proc_adv_stats3(char* buf, ch @@ -1077,283 +1092,287 @@ int tn7dsl_proc_adv_stats3(char* buf, ch
if (dslhal_api_getSNRpsds(pIhw, SNRpsds, 1)) if (dslhal_api_getSNRpsds(pIhw, SNRpsds, 1))
{ {
dgprintf(4, "dslhal_api_getSNRpsds failed!\n"); dgprintf(4, "dslhal_api_getSNRpsds failed!\n");
@ -1256,7 +1238,9 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
{ {
+ return single_open(file, tn7dsl_proc_dbg_cmsgs, PDE_DATA(inode)); + return single_open(file, tn7dsl_proc_dbg_cmsgs, PDE_DATA(inode));
+} +}
+
- int len = 0;
- int limit = count - 80;
+struct file_operations tn7dsl_proc_dbg_cmsgs_fops = { +struct file_operations tn7dsl_proc_dbg_cmsgs_fops = {
+ .owner = THIS_MODULE, + .owner = THIS_MODULE,
+ .open = tn7dsl_proc_dbg_cmsgs_open, + .open = tn7dsl_proc_dbg_cmsgs_open,
@ -1264,9 +1248,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
+ .llseek = seq_lseek, + .llseek = seq_lseek,
+ .release = single_release, + .release = single_release,
+}; +};
+
- int len = 0;
- int limit = count - 80;
+ +
+int tn7dsl_proc_dbg_rmsgs1(struct seq_file *m, void *data) +int tn7dsl_proc_dbg_rmsgs1(struct seq_file *m, void *data)
+{ +{
@ -1544,7 +1526,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
int F4count, F5count; int F4count, F5count;
unsigned int maxRate=0; unsigned int maxRate=0;
unsigned int us_maxRate=0; unsigned int us_maxRate=0;
@@ -1375,80 +1397,58 @@ int tn7dsl_proc_stats(char* buf, char ** @@ -1361,80 +1380,58 @@ int tn7dsl_proc_stats(char* buf, char **
//UR8_MERGE_START CQ10700 Manjula K //UR8_MERGE_START CQ10700 Manjula K
struct atm_dev *dev; struct atm_dev *dev;
Tn7AtmPrivate *priv; Tn7AtmPrivate *priv;
@ -1648,7 +1630,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
((unsigned int) pIhw->AppData.usAtm_count[0] + ((unsigned int) pIhw->AppData.usAtm_count[0] +
(unsigned int) pIhw->AppData.usAtm_count[1]) * 48, (unsigned int) pIhw->AppData.usAtm_count[1]) * 48,
((unsigned int) pIhw->AppData.dsGood_count[0] + ((unsigned int) pIhw->AppData.dsGood_count[0] +
@@ -1456,9 +1456,7 @@ int tn7dsl_proc_stats(char* buf, char ** @@ -1442,9 +1439,7 @@ int tn7dsl_proc_stats(char* buf, char **
/* /*
* Superframe Count * Superframe Count
*/ */
@ -1659,7 +1641,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
"\tUS Superframe Cnt :\t%u\tDS Superframe Cnt:\t%u\n", "\tUS Superframe Cnt :\t%u\tDS Superframe Cnt:\t%u\n",
(unsigned int)pIhw->AppData.usSuperFrmCnt, (unsigned int)pIhw->AppData.usSuperFrmCnt,
(unsigned int)pIhw->AppData.dsSuperFrmCnt ); (unsigned int)pIhw->AppData.dsSuperFrmCnt );
@@ -1466,57 +1464,45 @@ int tn7dsl_proc_stats(char* buf, char ** @@ -1452,57 +1447,45 @@ int tn7dsl_proc_stats(char* buf, char **
/* /*
* US and DS power * US and DS power
*/ */
@ -1732,7 +1714,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
(unsigned int)pIhw->AppData.currentHybridNum, trellis); (unsigned int)pIhw->AppData.currentHybridNum, trellis);
//@Added Maximum attainable bit rate information. 05-14-2004 //@Added Maximum attainable bit rate information. 05-14-2004
@@ -1528,12 +1514,12 @@ int tn7dsl_proc_stats(char* buf, char ** @@ -1514,12 +1497,12 @@ int tn7dsl_proc_stats(char* buf, char **
} }
else else
{ {
@ -1747,7 +1729,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
(unsigned char *) &rMsgsRA[0], 12); (unsigned char *) &rMsgsRA[0], 12);
maxRate = (unsigned int)pIhw->AppData.DSConRate; maxRate = (unsigned int)pIhw->AppData.DSConRate;
@@ -1549,283 +1535,213 @@ int tn7dsl_proc_stats(char* buf, char ** @@ -1535,283 +1518,213 @@ int tn7dsl_proc_stats(char* buf, char **
} }
} }
@ -2129,7 +2111,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
char *state; char *state;
int tag; int tag;
@@ -1859,16 +1775,26 @@ int tn7dsl_proc_modem(char* buf, char ** @@ -1845,16 +1758,26 @@ int tn7dsl_proc_modem(char* buf, char **
if(pIhw->lConnected == 1) if(pIhw->lConnected == 1)
state = "SHOWTIME"; state = "SHOWTIME";
@ -2163,7 +2145,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
/********************************************************************** /**********************************************************************
** * ** *
** tn7dsl_hdlc_update_crc() -- Calculate CRC * ** tn7dsl_hdlc_update_crc() -- Calculate CRC *
@@ -2133,11 +2059,8 @@ static int tn7dsl_hdlc_rx_process(unsign @@ -2119,11 +2042,8 @@ static int tn7dsl_hdlc_rx_process(unsign
return(ret); return(ret);
} }
@ -2176,7 +2158,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
int offset[2] = {34, 0}; // point to buffer parameter data structure int offset[2] = {34, 0}; // point to buffer parameter data structure
clearEocParm_t peoc; clearEocParm_t peoc;
@@ -2146,62 +2069,49 @@ int tn7dsl_proc_eoc (char *buf, char **s @@ -2132,62 +2052,49 @@ int tn7dsl_proc_eoc (char *buf, char **s
(unsigned char *) &peoc, (unsigned char *) &peoc,
sizeof (clearEocParm_t)); sizeof (clearEocParm_t));
@ -2279,7 +2261,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
int tn7dsl_clear_eoc_setup(void) int tn7dsl_clear_eoc_setup(void)
{ {
int i; int i;
@@ -4440,14 +4350,10 @@ int tn7dsl_proc_write_stats (struct file @@ -4407,14 +4314,10 @@ int tn7dsl_proc_write_stats (struct file
} }
@ -2295,7 +2277,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
typedef struct typedef struct
{ {
@@ -4528,197 +4434,185 @@ int tn7dsl_proc_train_mode_export (char @@ -4495,197 +4398,185 @@ int tn7dsl_proc_train_mode_export (char
} }
@ -2574,7 +2556,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
} }
start = (indx -1) * 128; start = (indx -1) * 128;
@@ -4727,39 +4621,89 @@ static int tn7dsl_proc_HLINpsdsIndx(char @@ -4694,39 +4585,89 @@ static int tn7dsl_proc_HLINpsdsIndx(char
{ {
if (!(i%8)) if (!(i%8))
{ {
@ -2679,7 +2661,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
#endif #endif
#endif //TR69_HLIN_IN #endif //TR69_HLIN_IN
// UR8_MERGE_END CQ10979* // UR8_MERGE_END CQ10979*
@@ -4767,64 +4711,48 @@ int tn7dsl_proc_HLINpsds4(char* buf, cha @@ -4734,64 +4675,48 @@ int tn7dsl_proc_HLINpsds4(char* buf, cha
// * UR8_MERGE_START CQ11057 Jack Zhang // * UR8_MERGE_START CQ11057 Jack Zhang
#ifdef TR69_PMD_IN #ifdef TR69_PMD_IN
#ifndef NO_ADV_STATS #ifndef NO_ADV_STATS
@ -2760,7 +2742,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
} }
@@ -4832,19 +4760,28 @@ int tn7dsl_proc_PMDus(char* buf, char ** @@ -4799,19 +4724,28 @@ int tn7dsl_proc_PMDus(char* buf, char **
for (i=0; i<pIhw->AppData.max_us_tones; i++) for (i=0; i<pIhw->AppData.max_us_tones; i++)
{ {
if (!(i%16)) if (!(i%16))
@ -2800,15 +2782,11 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
// * UR8_MERGE_END CQ11057 * // * UR8_MERGE_END CQ11057 *
--- a/tn7sar.c --- a/tn7sar.c
+++ b/tn7sar.c +++ b/tn7sar.c
@@ -1401,44 +1401,70 @@ int tn7sar_oam_generation(void *privCont @@ -1395,44 +1395,66 @@ int tn7sar_oam_generation(void *privCont
return 0; return 0;
} }
-int tn7sar_proc_oam_ping(char* buf, char **start, off_t offset, int count,int *eof, void *data) -int tn7sar_proc_oam_ping(char* buf, char **start, off_t offset, int count,int *eof, void *data)
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
+#define PDE_DATA(inode) PDE(inode)->data
+#endif
+
+static int tn7sar_proc_oam_ping(struct seq_file *m, void *data) +static int tn7sar_proc_oam_ping(struct seq_file *m, void *data)
{ {
- int len = 0; - int len = 0;
@ -2883,7 +2861,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
struct atm_dev *dev; struct atm_dev *dev;
Tn7AtmPrivate *priv; Tn7AtmPrivate *priv;
int i, j, k; int i, j, k;
@@ -1447,21 +1473,19 @@ int tn7sar_proc_sar_stat(char* buf, char @@ -1441,21 +1463,19 @@ int tn7sar_proc_sar_stat(char* buf, char
unsigned int *pStateBase, *pSarStat; unsigned int *pStateBase, *pSarStat;
HAL_FUNCTIONS *pHalFunc; HAL_FUNCTIONS *pHalFunc;
HAL_DEVICE *pHalDev; HAL_DEVICE *pHalDev;
@ -2908,7 +2886,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
k=0; k=0;
for(j=0;j<4;j++) for(j=0;j<4;j++)
{ {
@@ -1474,26 +1498,16 @@ int tn7sar_proc_sar_stat(char* buf, char @@ -1468,26 +1488,16 @@ int tn7sar_proc_sar_stat(char* buf, char
{ {
if((char *)*pSarStat == NULL) if((char *)*pSarStat == NULL)
break; break;
@ -2939,7 +2917,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
} }
} }
@@ -1502,9 +1516,22 @@ int tn7sar_proc_sar_stat(char* buf, char @@ -1496,9 +1506,22 @@ int tn7sar_proc_sar_stat(char* buf, char
} }
} }

@ -1,6 +1,6 @@
--- a/tn7dsl.c --- a/tn7dsl.c
+++ b/tn7dsl.c +++ b/tn7dsl.c
@@ -346,7 +346,7 @@ static void tn7dsl_chng_modulation(void* @@ -333,7 +333,7 @@ static void tn7dsl_chng_modulation(void*
static unsigned int tn7dsl_set_modulation(void* data, int flag); static unsigned int tn7dsl_set_modulation(void* data, int flag);
static void tn7dsl_ctrl_fineGain(int value); static void tn7dsl_ctrl_fineGain(int value);
static void tn7dsl_set_fineGainValue(int value); static void tn7dsl_set_fineGainValue(int value);
@ -9,7 +9,7 @@
void *buffer, size_t * lenp); void *buffer, size_t * lenp);
static void tn7dsl_register_dslss_led(void); static void tn7dsl_register_dslss_led(void);
void tn7dsl_dslmod_sysctl_register(void); void tn7dsl_dslmod_sysctl_register(void);
@@ -3325,7 +3325,7 @@ unsigned int tn7dsl_get_memory(unsigned @@ -3308,7 +3308,7 @@ unsigned int tn7dsl_get_memory(unsigned
@ -18,21 +18,21 @@
void *buffer, size_t *lenp) void *buffer, size_t *lenp)
{ {
char *ptr; char *ptr;
@@ -3451,7 +3451,7 @@ static int dslmod_sysctl(ctl_table *ctl, @@ -3423,7 +3423,7 @@ static int dslmod_sysctl(ctl_table *ctl,
} }
-ctl_table dslmod_table[] = { -ctl_table dslmod_table[] = {
+struct ctl_table dslmod_table[] = { +struct ctl_table dslmod_table[] = {
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33) {
{DEV_DSLMOD, "dslmod", info, DSL_MOD_SIZE, 0644, NULL, NULL, &dslmod_sysctl, &sysctl_string} .procname = "dslmod",
#else .data = info,
@@ -3469,7 +3469,7 @@ ctl_table dslmod_table[] = { @@ -3437,7 +3437,7 @@ ctl_table dslmod_table[] = {
}; };
/* Make sure that /proc/sys/dev is there */ /* Make sure that /proc/sys/dev is there */
-ctl_table dslmod_root_table[] = { -ctl_table dslmod_root_table[] = {
+struct ctl_table dslmod_root_table[] = { +struct ctl_table dslmod_root_table[] = {
#ifdef CONFIG_PROC_FS #ifdef CONFIG_PROC_FS
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33) {
{CTL_DEV, "dev", NULL, 0, 0555, dslmod_table} .procname = "dev",

@ -1,6 +1,6 @@
--- a/tn7atm.c --- a/tn7atm.c
+++ b/tn7atm.c +++ b/tn7atm.c
@@ -788,7 +788,7 @@ static int __init tn7atm_irq_request (st @@ -777,7 +777,7 @@ static int __init tn7atm_irq_request (st
* Register SAR interrupt * Register SAR interrupt
*/ */
priv->sar_irq = LNXINTNUM (ATM_SAR_INT); /* Interrupt line # */ priv->sar_irq = LNXINTNUM (ATM_SAR_INT); /* Interrupt line # */
@ -9,7 +9,7 @@
printk ("Could not register tn7atm_sar_irq\n"); printk ("Could not register tn7atm_sar_irq\n");
/* /*
@@ -806,7 +806,7 @@ static int __init tn7atm_irq_request (st @@ -795,7 +795,7 @@ static int __init tn7atm_irq_request (st
* Reigster Receive interrupt A * Reigster Receive interrupt A
*/ */
priv->dsl_irq = LNXINTNUM (ATM_DSL_INT); /* Interrupt line # */ priv->dsl_irq = LNXINTNUM (ATM_DSL_INT); /* Interrupt line # */

@ -1,30 +1,19 @@
--- a/tn7dsl.c --- a/tn7dsl.c
+++ b/tn7dsl.c +++ b/tn7dsl.c
@@ -117,6 +117,7 @@ @@ -492,7 +492,6 @@ static void avsar_release(struct device
#include <linux/vmalloc.h>
#include <linux/file.h>
#include <linux/firmware.h>
+#include <linux/version.h>
#include <asm/io.h>
#include <asm/ar7/ar7.h>
@@ -492,7 +493,9 @@ static void avsar_release(struct device
} }
static struct device avsar = { static struct device avsar = {
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30) - .bus_id = "vlynq",
.bus_id = "vlynq",
+#endif
.release = avsar_release, .release = avsar_release,
}; };
@@ -501,6 +504,9 @@ int shim_osLoadFWImage(unsigned char *pt @@ -501,6 +500,8 @@ int shim_osLoadFWImage(unsigned char *pt
const struct firmware *fw_entry; const struct firmware *fw_entry;
size_t size; size_t size;
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,30)
+ dev_set_name(&avsar, "avsar"); + dev_set_name(&avsar, "avsar");
+#endif +
printk("requesting firmware image \"ar0700xx.bin\"\n"); printk("requesting firmware image \"ar0700xx.bin\"\n");
if(device_register(&avsar) < 0) { if(device_register(&avsar) < 0) {
printk(KERN_ERR printk(KERN_ERR

@ -1,54 +1,39 @@
--- a/tn7atm.c --- a/tn7atm.c
+++ b/tn7atm.c +++ b/tn7atm.c
@@ -76,10 +76,16 @@ @@ -78,8 +78,8 @@
#include <linux/proc_fs.h>
#include <linux/string.h>
#include <linux/ctype.h> #include <linux/ctype.h>
+#include <linux/version.h>
#include <asm/io.h> #include <asm/io.h>
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,31) -#include <asm/ar7/ar7.h>
#include <asm/ar7/ar7.h> -#include <asm/ar7/prom.h>
#include <asm/ar7/prom.h>
+#else
+#include <asm/mach-ar7/ar7.h> +#include <asm/mach-ar7/ar7.h>
+#include <asm/mach-ar7/prom.h> +#include <asm/mach-ar7/prom.h>
+#endif
#include "dsl_hal_api.h" #include "dsl_hal_api.h"
#ifdef AR7_EFM #ifdef AR7_EFM
--- a/tn7dsl.c --- a/tn7dsl.c
+++ b/tn7dsl.c +++ b/tn7dsl.c
@@ -120,8 +120,13 @@ @@ -119,8 +119,8 @@
#include <linux/version.h> #include <linux/firmware.h>
#include <asm/io.h> #include <asm/io.h>
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,31) -#include <asm/ar7/ar7.h>
#include <asm/ar7/ar7.h> -#include <asm/ar7/prom.h>
#include <asm/ar7/prom.h>
+#else
+#include <asm/mach-ar7/ar7.h> +#include <asm/mach-ar7/ar7.h>
+#include <asm/mach-ar7/prom.h> +#include <asm/mach-ar7/prom.h>
+#endif
/* Modules specific header files */ /* Modules specific header files */
#ifdef AR7_EFM #ifdef AR7_EFM
--- a/tn7sar.c --- a/tn7sar.c
+++ b/tn7sar.c +++ b/tn7sar.c
@@ -53,10 +53,16 @@ @@ -55,8 +55,8 @@
#include <linux/proc_fs.h>
#include <linux/string.h>
#include <linux/ctype.h> #include <linux/ctype.h>
+#include <linux/version.h>
#include <asm/io.h> #include <asm/io.h>
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,31) -#include <asm/ar7/ar7.h>
#include <asm/ar7/ar7.h> -#include <asm/ar7/prom.h>
#include <asm/ar7/prom.h>
+#else
+#include <asm/mach-ar7/ar7.h> +#include <asm/mach-ar7/ar7.h>
+#include <asm/mach-ar7/prom.h> +#include <asm/mach-ar7/prom.h>
+#endif
#define _CPHAL_AAL5 #define _CPHAL_AAL5
#define _CPHAL_SAR #define _CPHAL_SAR

@ -1,53 +1,39 @@
--- a/tn7dsl.c --- a/tn7dsl.c
+++ b/tn7dsl.c +++ b/tn7dsl.c
@@ -215,7 +215,11 @@ led_reg_t ledreg[2]; @@ -209,7 +209,7 @@ led_reg_t ledreg[2];
static struct led_funcs ledreg[2]; static struct led_funcs ledreg[2];
#endif #endif
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33) -#define DEV_DSLMOD CTL_UNNUMBERED
#define DEV_DSLMOD CTL_UNNUMBERED
+#else
+#define DEV_DSLMOD 0 +#define DEV_DSLMOD 0
+#endif
#define MAX_STR_SIZE 256 #define MAX_STR_SIZE 256
#define DSL_MOD_SIZE 256 #define DSL_MOD_SIZE 256
@@ -3615,9 +3619,16 @@ static int dslmod_sysctl(ctl_table *ctl, @@ -3605,9 +3605,9 @@ static int dslmod_sysctl(ctl_table *ctl,
*/ */
if(write) if(write)
{ {
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,32) - ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
-
+#else
+ ret = proc_dostring(ctl, write, buffer, lenp, 0); + ret = proc_dostring(ctl, write, buffer, lenp, 0);
+#endif
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33) - switch (ctl->ctl_name)
switch (ctl->ctl_name)
+#else
+ switch ((long)ctl->extra2) + switch ((long)ctl->extra2)
+#endif
{ {
case DEV_DSLMOD: case DEV_DSLMOD:
ptr = strpbrk(info, " \t"); ptr = strpbrk(info, " \t");
@@ -3701,14 +3712,29 @@ static int dslmod_sysctl(ctl_table *ctl, @@ -3691,14 +3691,21 @@ static int dslmod_sysctl(ctl_table *ctl,
else else
{ {
len += sprintf(info+len, mod_req); len += sprintf(info+len, mod_req);
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,32) - ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
+#else
+ ret = proc_dostring(ctl, write, buffer, lenp, 0); + ret = proc_dostring(ctl, write, buffer, lenp, 0);
+#endif
} }
return ret; return ret;
} }
ctl_table dslmod_table[] = { ctl_table dslmod_table[] = {
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33) - {DEV_DSLMOD, "dslmod", info, DSL_MOD_SIZE, 0644, NULL, NULL, &dslmod_sysctl, &sysctl_string}
{DEV_DSLMOD, "dslmod", info, DSL_MOD_SIZE, 0644, NULL, NULL, &dslmod_sysctl, &sysctl_string}
+#else
+ { + {
+ .procname = "dslmod", + .procname = "dslmod",
+ .data = info, + .data = info,
@ -56,24 +42,20 @@
+ .proc_handler = &dslmod_sysctl, + .proc_handler = &dslmod_sysctl,
+ .extra2 = (void *)DEV_DSLMOD, + .extra2 = (void *)DEV_DSLMOD,
+ } + }
+#endif
, ,
{0} {0}
}; };
@@ -3716,7 +3742,16 @@ ctl_table dslmod_table[] = { @@ -3706,7 +3713,12 @@ ctl_table dslmod_table[] = {
/* Make sure that /proc/sys/dev is there */ /* Make sure that /proc/sys/dev is there */
ctl_table dslmod_root_table[] = { ctl_table dslmod_root_table[] = {
#ifdef CONFIG_PROC_FS #ifdef CONFIG_PROC_FS
+ #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33) - {CTL_DEV, "dev", NULL, 0, 0555, dslmod_table}
{CTL_DEV, "dev", NULL, 0, 0555, dslmod_table}
+ #else
+ { + {
+ .procname = "dev", + .procname = "dev",
+ .maxlen = 0, + .maxlen = 0,
+ .mode = 0555, + .mode = 0555,
+ .child = dslmod_table, + .child = dslmod_table,
+ } + }
+ #endif
, ,
#endif /* CONFIG_PROC_FS */ #endif /* CONFIG_PROC_FS */
{0} {0}

@ -1,28 +1,24 @@
--- a/tn7atm.c --- a/tn7atm.c
+++ b/tn7atm.c +++ b/tn7atm.c
@@ -2009,7 +2009,11 @@ static int __init tn7atm_register (Tn7At @@ -2003,7 +2003,7 @@ static int __init tn7atm_register (Tn7At
dgprintf (4, "device %s being registered\n", priv->name); dgprintf (4, "device %s being registered\n", priv->name);
+ #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,37) - mydev = atm_dev_register (priv->proc_name, &tn7atm_ops, -1, NULL);
mydev = atm_dev_register (priv->proc_name, &tn7atm_ops, -1, NULL);
+ #else
+ mydev = atm_dev_register (priv->proc_name, NULL, &tn7atm_ops, -1, NULL); + mydev = atm_dev_register (priv->proc_name, NULL, &tn7atm_ops, -1, NULL);
+ #endif
if (mydev == NULL) if (mydev == NULL)
{ {
--- a/tn7dsl.c --- a/tn7dsl.c
+++ b/tn7dsl.c +++ b/tn7dsl.c
@@ -512,14 +512,17 @@ int shim_osLoadFWImage(unsigned char *pt @@ -499,13 +499,16 @@ int shim_osLoadFWImage(unsigned char *pt
{ {
const struct firmware *fw_entry; const struct firmware *fw_entry;
size_t size; size_t size;
+ int ret; + int ret;
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,30)
dev_set_name(&avsar, "avsar"); dev_set_name(&avsar, "avsar");
#endif
printk("requesting firmware image \"ar0700xx.bin\"\n"); printk("requesting firmware image \"ar0700xx.bin\"\n");
- if(device_register(&avsar) < 0) { - if(device_register(&avsar) < 0) {
+ dev_set_name(&avsar, "avsar"); + dev_set_name(&avsar, "avsar");

@ -125,7 +125,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
#endif __SGAPI_H #endif __SGAPI_H
--- a/tn7atm.c --- a/tn7atm.c
+++ b/tn7atm.c +++ b/tn7atm.c
@@ -265,11 +265,9 @@ MODULE_PARM_DESC(oam_lb_timeout, "OAM LB @@ -259,11 +259,9 @@ MODULE_PARM_DESC(oam_lb_timeout, "OAM LB
#ifdef AR7_EFM #ifdef AR7_EFM
extern void tn7dsl_disable_alarm(void); extern void tn7dsl_disable_alarm(void);
@ -140,7 +140,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
extern unsigned int g_efm_proc_ctl; extern unsigned int g_efm_proc_ctl;
extern struct net_device *mydev_efm; extern struct net_device *mydev_efm;
extern Tn7AtmPrivate *mypriv; extern Tn7AtmPrivate *mypriv;
@@ -305,31 +303,17 @@ extern int tn7efm_register (Tn7AtmPrivat @@ -299,31 +297,17 @@ extern int tn7efm_register (Tn7AtmPrivat
static int tn7atm_irq_request (struct atm_dev *dev); static int tn7atm_irq_request (struct atm_dev *dev);
#endif #endif
@ -177,15 +177,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
//CT - Added function to return chipset Id //CT - Added function to return chipset Id
void tn7atm_get_chipsetId (char *pVerId); void tn7atm_get_chipsetId (char *pVerId);
@@ -456,78 +440,83 @@ const char drv_proc_root_folder[] = "ava @@ -453,75 +437,75 @@ static int proc_root_already_exists = TR
static struct proc_dir_entry *root_proc_dir_entry = NULL;
#define DRV_PROC_MODE 0644
static int proc_root_already_exists = TRUE;
+
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
+#define PDE_DATA(inode) PDE(inode)->data
+#endif
+
static struct static struct
{ {
const unsigned char name[32]; const unsigned char name[32];
@ -301,7 +293,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
}; };
/* *INDENT-ON* */ /* *INDENT-ON* */
@@ -1811,76 +1800,81 @@ int tn7atm_receive (void *os_dev, int ch @@ -1805,76 +1789,81 @@ int tn7atm_receive (void *os_dev, int ch
return 0; return 0;
} }
@ -353,15 +345,15 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
- return len; - return len;
+ return 0; + return 0;
+}
+
+static int tn7atm_proc_channels_open(struct inode *inode, struct file *file)
+{
+ return single_open(file, tn7atm_proc_channels, PDE_DATA(inode));
} }
-static int tn7atm_proc_private (char *buf, char **start, off_t offset, -static int tn7atm_proc_private (char *buf, char **start, off_t offset,
- int count, int *eof, void *data) - int count, int *eof, void *data)
+static int tn7atm_proc_channels_open(struct inode *inode, struct file *file)
+{
+ return single_open(file, tn7atm_proc_channels, PDE_DATA(inode));
+}
+
+static struct file_operations tn7atm_proc_channels_fops = { +static struct file_operations tn7atm_proc_channels_fops = {
+ .owner = THIS_MODULE, + .owner = THIS_MODULE,
+ .open = tn7atm_proc_channels_open, + .open = tn7atm_proc_channels_open,
@ -426,7 +418,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
void tn7atm_sarhal_isr_register (void *os_dev, void *hal_isr, void tn7atm_sarhal_isr_register (void *os_dev, void *hal_isr,
int interrupt_num) int interrupt_num)
{ {
@@ -2033,10 +2027,8 @@ static int __init tn7atm_register (Tn7At @@ -2023,10 +2012,8 @@ static int __init tn7atm_register (Tn7At
return ATM_REG_OK; return ATM_REG_OK;
} }
@ -438,7 +430,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
char dslVer[8]; char dslVer[8];
char dspVer[10]; char dspVer[10];
char chipsetID[32]; //CT CQ10076 - Added temporary buffer to store chipset Id char chipsetID[32]; //CT CQ10076 - Added temporary buffer to store chipset Id
@@ -2051,58 +2043,52 @@ static int tn7atm_proc_version (char *bu @@ -2041,58 +2028,52 @@ static int tn7atm_proc_version (char *bu
priv = mydev->dev_data; priv = mydev->dev_data;
#ifdef AR7_EFM #ifdef AR7_EFM
@ -517,7 +509,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
pdspV1, pdspV2, (priv->curr_TC_mode== TC_MODE_ATM) ? '*' : ' '); pdspV1, pdspV2, (priv->curr_TC_mode== TC_MODE_ATM) ? '*' : ' ');
tn7sar_get_EFM_firmware_version (&pdspV1, &pdspV2); tn7sar_get_EFM_firmware_version (&pdspV1, &pdspV2);
@@ -2114,26 +2100,37 @@ static int tn7atm_proc_version (char *bu @@ -2104,26 +2085,37 @@ static int tn7atm_proc_version (char *bu
#endif #endif
str = "EFM"; str = "EFM";
@ -531,16 +523,16 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
tn7atm_get_chipsetId(chipsetID); tn7atm_get_chipsetId(chipsetID);
- len += sprintf (buf + len, "Chipset ID: [%s]\n",chipsetID); - len += sprintf (buf + len, "Chipset ID: [%s]\n",chipsetID);
+ seq_printf (m, "Chipset ID: [%s]\n",chipsetID); + seq_printf (m, "Chipset ID: [%s]\n",chipsetID);
+
+ return 0;
+}
- return len; - return len;
+ return 0;
}
+static int tn7atm_proc_version_open(struct inode *inode, struct file *file) +static int tn7atm_proc_version_open(struct inode *inode, struct file *file)
+{ +{
+ return single_open(file, tn7atm_proc_version, PDE_DATA(inode)); + return single_open(file, tn7atm_proc_version, PDE_DATA(inode));
} +}
+
+static struct file_operations tn7atm_proc_version_fops = { +static struct file_operations tn7atm_proc_version_fops = {
+ .owner = THIS_MODULE, + .owner = THIS_MODULE,
+ .open = tn7atm_proc_version_open, + .open = tn7atm_proc_version_open,
@ -560,7 +552,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
int ctr; int ctr;
const char *residual; const char *residual;
@@ -2214,24 +2211,7 @@ static int __init tn7atm_detect (void) @@ -2204,24 +2196,7 @@ static int __init tn7atm_detect (void)
*/ */
for (ctr = 0; ctr < (NUM_ELEMS (proc_if)); ctr++) for (ctr = 0; ctr < (NUM_ELEMS (proc_if)); ctr++)
{ {
@ -586,7 +578,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
} }
tn7dsl_dslmod_sysctl_register (); tn7dsl_dslmod_sysctl_register ();
@@ -2711,73 +2691,18 @@ static int tn7atm_set_can_support_adsl2 @@ -2701,73 +2676,18 @@ static int tn7atm_set_can_support_adsl2
return TRUE; return TRUE;
} }
@ -599,10 +591,10 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
+static int tn7atm_proc_qos_read(struct seq_file *m, void *data) +static int tn7atm_proc_qos_read(struct seq_file *m, void *data)
{ {
- if (!de || !de->low_ino) - if (!de || !de->low_ino)
- return 0;
- if (de->namelen != len)
+ seq_printf (m, "\nEnableQoS = %d\n", EnableQoS); + seq_printf (m, "\nEnableQoS = %d\n", EnableQoS);
return 0; return 0;
- if (de->namelen != len)
- return 0;
- return !strncmp (name, de->name, len); - return !strncmp (name, de->name, len);
-} -}
- -
@ -665,7 +657,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
} }
static int tn7atm_proc_qos_write(struct file *fp, const char *buf, unsigned long count, void *data) static int tn7atm_proc_qos_write(struct file *fp, const char *buf, unsigned long count, void *data)
@@ -2812,7 +2737,7 @@ static int tn7atm_proc_qos_write(struct @@ -2802,7 +2722,7 @@ static int tn7atm_proc_qos_write(struct
} }
// [KT] // [KT]
@ -674,7 +666,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
{ {
char local_buf[10]; char local_buf[10];
@@ -2843,5 +2768,33 @@ int tn7atm_proc_turbodsl_write(struct fi @@ -2833,5 +2753,33 @@ int tn7atm_proc_turbodsl_write(struct fi
return count; return count;
} }
@ -710,17 +702,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
module_exit (tn7atm_exit); module_exit (tn7atm_exit);
--- a/tn7dsl.c --- a/tn7dsl.c
+++ b/tn7dsl.c +++ b/tn7dsl.c
@@ -233,6 +233,9 @@ static struct led_funcs ledreg[2]; @@ -356,7 +356,7 @@ static void tn7dsl_register_dslss_led(vo
#define tn7dsl_kfree_skb(x) dev_kfree_skb(x)
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
+#define PDE_DATA(inode) PDE(inode)->data
+#endif
//---------------------------------------------
// Begin Clear EOC definitions
@@ -366,7 +369,7 @@ static void tn7dsl_register_dslss_led(vo
void tn7dsl_dslmod_sysctl_register(void); void tn7dsl_dslmod_sysctl_register(void);
void tn7dsl_dslmod_sysctl_unregister(void); void tn7dsl_dslmod_sysctl_unregister(void);
static int tn7dsl_clear_eoc_receive(void); static int tn7dsl_clear_eoc_receive(void);
@ -729,7 +711,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
/* end of internal functions */ /* end of internal functions */
// UR8_MERGE_START CQ11054 Jack Zhang // UR8_MERGE_START CQ11054 Jack Zhang
@@ -698,11 +701,9 @@ void shim_osCriticalExit(void) @@ -684,11 +684,9 @@ void shim_osCriticalExit(void)
spin_unlock_irqrestore(&shimLock, flags); spin_unlock_irqrestore(&shimLock, flags);
} }
@ -742,7 +724,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
int i, j; int i, j;
int bin = (int) data; int bin = (int) data;
unsigned short *rxSnrPerBin; unsigned short *rxSnrPerBin;
@@ -723,95 +724,128 @@ static int tn7dsl_proc_snr_print (char * @@ -709,95 +707,128 @@ static int tn7dsl_proc_snr_print (char *
break; break;
default: default:
@ -915,7 +897,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
#ifndef NO_ACT #ifndef NO_ACT
int tn7dsl_proc_ds_noise(char* buf, char **start, off_t offset, int count, int tn7dsl_proc_ds_noise(char* buf, char **start, off_t offset, int count,
int *eof, void *data) int *eof, void *data)
@@ -874,59 +908,48 @@ static char *pUnknown= "Unknown"; @@ -860,59 +891,48 @@ static char *pUnknown= "Unknown";
#ifdef ADV_DIAG_STATS //CQ10275, CQ10449 #ifdef ADV_DIAG_STATS //CQ10275, CQ10449
//UR8_MERGE_START CQ10449 Jack Zhang //UR8_MERGE_START CQ10449 Jack Zhang
@ -975,15 +957,15 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
printk("proc_adv_stats - return: ctr=%d, len=%d\n", ctr, len); printk("proc_adv_stats - return: ctr=%d, len=%d\n", ctr, len);
- return len; - return len;
+ return 0; + return 0;
} +}
+
-static int proc_adv_stats_header(char* buf, int limit)
+ +
+static int tn7dsl_proc_adv_stats_open(struct inode *inode, struct file *file) +static int tn7dsl_proc_adv_stats_open(struct inode *inode, struct file *file)
+{ +{
+ return single_open(file, tn7dsl_proc_adv_stats, PDE_DATA(inode)); + return single_open(file, tn7dsl_proc_adv_stats, PDE_DATA(inode));
+} }
+
-static int proc_adv_stats_header(char* buf, int limit)
+struct file_operations tn7dsl_proc_adv_stats_fops = { +struct file_operations tn7dsl_proc_adv_stats_fops = {
+ .owner = THIS_MODULE, + .owner = THIS_MODULE,
+ .open = tn7dsl_proc_adv_stats_open, + .open = tn7dsl_proc_adv_stats_open,
@ -996,7 +978,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
{ {
int len = 0; int len = 0;
int i = 0; int i = 0;
@@ -935,66 +958,53 @@ static int proc_adv_stats_header(char* b @@ -921,66 +941,53 @@ static int proc_adv_stats_header(char* b
*/ */
dslhal_api_gatherStatistics(pIhw); dslhal_api_gatherStatistics(pIhw);
@ -1084,7 +1066,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
} }
static int getDiagDisplayMode() static int getDiagDisplayMode()
@@ -1017,29 +1027,24 @@ static int getDiagDisplayMode() @@ -1003,29 +1010,24 @@ static int getDiagDisplayMode()
ret = 2; ret = 2;
return ret; return ret;
} }
@ -1118,7 +1100,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
(unsigned int)pIhw->AppData.BitAllocTblDstrm[i], (unsigned int)pIhw->AppData.BitAllocTblDstrm[i],
(unsigned int)pIhw->AppData.marginTblDstrm[i], (unsigned int)pIhw->AppData.marginTblDstrm[i],
(int)pIhw->AppData.rxSnrPerBin0[i]); (int)pIhw->AppData.rxSnrPerBin0[i]);
@@ -1050,26 +1055,34 @@ int tn7dsl_proc_adv_stats1(char* buf, ch @@ -1036,26 +1038,34 @@ int tn7dsl_proc_adv_stats1(char* buf, ch
if (dslhal_api_getSNRpsds(pIhw, SNRpsds, 1)) if (dslhal_api_getSNRpsds(pIhw, SNRpsds, 1))
{ {
dgprintf(4, "dslhal_api_getSNRpsds failed!\n"); dgprintf(4, "dslhal_api_getSNRpsds failed!\n");
@ -1161,7 +1143,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
int i; int i;
int mode = 0; //mode = 0 => ADSL1 or ADSL2 & 2+ int mode = 0; //mode = 0 => ADSL1 or ADSL2 & 2+
unsigned char SNRpsds[512]; unsigned char SNRpsds[512];
@@ -1079,12 +1092,10 @@ int tn7dsl_proc_adv_stats2(char* buf, ch @@ -1065,12 +1075,10 @@ int tn7dsl_proc_adv_stats2(char* buf, ch
if( mode==1) //ADSL1 if( mode==1) //ADSL1
{ {
dslhal_api_gatherStatistics(pIhw); dslhal_api_gatherStatistics(pIhw);
@ -1176,7 +1158,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
(unsigned int)pIhw->AppData.BitAllocTblDstrm[i], (unsigned int)pIhw->AppData.BitAllocTblDstrm[i],
(unsigned int)pIhw->AppData.marginTblDstrm[i], (unsigned int)pIhw->AppData.marginTblDstrm[i],
(int)pIhw->AppData.rxSnrPerBin0[i]); (int)pIhw->AppData.rxSnrPerBin0[i]);
@@ -1095,26 +1106,35 @@ int tn7dsl_proc_adv_stats2(char* buf, ch @@ -1081,26 +1089,35 @@ int tn7dsl_proc_adv_stats2(char* buf, ch
if (dslhal_api_getSNRpsds(pIhw, SNRpsds, 1)) if (dslhal_api_getSNRpsds(pIhw, SNRpsds, 1))
{ {
dgprintf(4, "dslhal_api_getSNRpsds failed!\n"); dgprintf(4, "dslhal_api_getSNRpsds failed!\n");
@ -1220,7 +1202,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
int i; int i;
int mode = 0; //mode = 0 => ADSL1 or ADSL2 & 2+ int mode = 0; //mode = 0 => ADSL1 or ADSL2 & 2+
unsigned char SNRpsds[512]; unsigned char SNRpsds[512];
@@ -1124,12 +1144,10 @@ int tn7dsl_proc_adv_stats3(char* buf, ch @@ -1110,12 +1127,10 @@ int tn7dsl_proc_adv_stats3(char* buf, ch
if( mode==1) //ADSL1 if( mode==1) //ADSL1
{ {
dslhal_api_gatherStatistics(pIhw); dslhal_api_gatherStatistics(pIhw);
@ -1235,7 +1217,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
(unsigned int)pIhw->AppData.BitAllocTblDstrm[i], (unsigned int)pIhw->AppData.BitAllocTblDstrm[i],
(unsigned int)pIhw->AppData.marginTblDstrm[i], (unsigned int)pIhw->AppData.marginTblDstrm[i],
(int)pIhw->AppData.rxSnrPerBin0[i]); (int)pIhw->AppData.rxSnrPerBin0[i]);
@@ -1140,283 +1158,287 @@ int tn7dsl_proc_adv_stats3(char* buf, ch @@ -1126,283 +1141,287 @@ int tn7dsl_proc_adv_stats3(char* buf, ch
if (dslhal_api_getSNRpsds(pIhw, SNRpsds, 1)) if (dslhal_api_getSNRpsds(pIhw, SNRpsds, 1))
{ {
dgprintf(4, "dslhal_api_getSNRpsds failed!\n"); dgprintf(4, "dslhal_api_getSNRpsds failed!\n");
@ -1455,9 +1437,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
{ {
+ return single_open(file, tn7dsl_proc_dbg_rmsgs1, PDE_DATA(inode)); + return single_open(file, tn7dsl_proc_dbg_rmsgs1, PDE_DATA(inode));
+} +}
+
- int len = 0;
- int limit = count - 80;
+struct file_operations tn7dsl_proc_dbg_rmsgs1_fops = { +struct file_operations tn7dsl_proc_dbg_rmsgs1_fops = {
+ .owner = THIS_MODULE, + .owner = THIS_MODULE,
+ .open = tn7dsl_proc_dbg_rmsgs1_open, + .open = tn7dsl_proc_dbg_rmsgs1_open,
@ -1465,7 +1445,9 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
+ .llseek = seq_lseek, + .llseek = seq_lseek,
+ .release = single_release, + .release = single_release,
+}; +};
+
- int len = 0;
- int limit = count - 80;
+ +
+int tn7dsl_proc_dbg_rmsgs2(struct seq_file *m, void *data) +int tn7dsl_proc_dbg_rmsgs2(struct seq_file *m, void *data)
+{ +{
@ -1636,12 +1618,12 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
- return len; - return len;
+ return 0; + return 0;
} +}
+ +
+static int tn7dsl_proc_dbg_rmsgs4_open(struct inode *inode, struct file *file) +static int tn7dsl_proc_dbg_rmsgs4_open(struct inode *inode, struct file *file)
+{ +{
+ return single_open(file, tn7dsl_proc_dbg_rmsgs4, PDE_DATA(inode)); + return single_open(file, tn7dsl_proc_dbg_rmsgs4, PDE_DATA(inode));
+} }
+ +
+struct file_operations tn7dsl_proc_dbg_rmsgs4_fops = { +struct file_operations tn7dsl_proc_dbg_rmsgs4_fops = {
+ .owner = THIS_MODULE, + .owner = THIS_MODULE,
@ -1664,7 +1646,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
int F4count, F5count; int F4count, F5count;
unsigned int maxRate=0; unsigned int maxRate=0;
unsigned int us_maxRate=0; unsigned int us_maxRate=0;
@@ -1424,80 +1446,58 @@ int tn7dsl_proc_stats(char* buf, char ** @@ -1410,80 +1429,58 @@ int tn7dsl_proc_stats(char* buf, char **
//UR8_MERGE_START CQ10700 Manjula K //UR8_MERGE_START CQ10700 Manjula K
struct atm_dev *dev; struct atm_dev *dev;
Tn7AtmPrivate *priv; Tn7AtmPrivate *priv;
@ -1768,7 +1750,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
((unsigned int) pIhw->AppData.usAtm_count[0] + ((unsigned int) pIhw->AppData.usAtm_count[0] +
(unsigned int) pIhw->AppData.usAtm_count[1]) * 48, (unsigned int) pIhw->AppData.usAtm_count[1]) * 48,
((unsigned int) pIhw->AppData.dsGood_count[0] + ((unsigned int) pIhw->AppData.dsGood_count[0] +
@@ -1505,9 +1505,7 @@ int tn7dsl_proc_stats(char* buf, char ** @@ -1491,9 +1488,7 @@ int tn7dsl_proc_stats(char* buf, char **
/* /*
* Superframe Count * Superframe Count
*/ */
@ -1779,7 +1761,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
"\tUS Superframe Cnt :\t%u\tDS Superframe Cnt:\t%u\n", "\tUS Superframe Cnt :\t%u\tDS Superframe Cnt:\t%u\n",
(unsigned int)pIhw->AppData.usSuperFrmCnt, (unsigned int)pIhw->AppData.usSuperFrmCnt,
(unsigned int)pIhw->AppData.dsSuperFrmCnt ); (unsigned int)pIhw->AppData.dsSuperFrmCnt );
@@ -1515,59 +1513,45 @@ int tn7dsl_proc_stats(char* buf, char ** @@ -1501,59 +1496,45 @@ int tn7dsl_proc_stats(char* buf, char **
/* /*
* US and DS power * US and DS power
*/ */
@ -1851,7 +1833,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
(unsigned int)pIhw->AppData.currentHybridNum, trellis); (unsigned int)pIhw->AppData.currentHybridNum, trellis);
//@Added Maximum attainable bit rate information. 05-14-2004 //@Added Maximum attainable bit rate information. 05-14-2004
@@ -1581,12 +1565,12 @@ int tn7dsl_proc_stats(char* buf, char ** @@ -1567,12 +1548,12 @@ int tn7dsl_proc_stats(char* buf, char **
} }
else else
{ {
@ -1866,7 +1848,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
(unsigned char *) &rMsgsRA[0], 12); (unsigned char *) &rMsgsRA[0], 12);
maxRate = (unsigned int)pIhw->AppData.DSConRate; maxRate = (unsigned int)pIhw->AppData.DSConRate;
@@ -1602,294 +1586,223 @@ int tn7dsl_proc_stats(char* buf, char ** @@ -1588,294 +1569,223 @@ int tn7dsl_proc_stats(char* buf, char **
} }
} }
@ -2259,7 +2241,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
char *state; char *state;
int tag; int tag;
@@ -1923,22 +1836,31 @@ extern int tn7efm_get_currTCmode(void); @@ -1909,22 +1819,31 @@ extern int tn7efm_get_currTCmode(void);
if(pIhw->lConnected == 1) if(pIhw->lConnected == 1)
state = "SHOWTIME"; state = "SHOWTIME";
@ -2301,7 +2283,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
/********************************************************************** /**********************************************************************
** * ** *
** tn7dsl_hdlc_update_crc() -- Calculate CRC * ** tn7dsl_hdlc_update_crc() -- Calculate CRC *
@@ -2203,11 +2125,8 @@ static int tn7dsl_hdlc_rx_process(unsign @@ -2189,11 +2108,8 @@ static int tn7dsl_hdlc_rx_process(unsign
return(ret); return(ret);
} }
@ -2314,7 +2296,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
int offset[2] = {34, 0}; // point to buffer parameter data structure int offset[2] = {34, 0}; // point to buffer parameter data structure
clearEocParm_t peoc; clearEocParm_t peoc;
@@ -2216,62 +2135,49 @@ int tn7dsl_proc_eoc (char *buf, char **s @@ -2202,62 +2118,49 @@ int tn7dsl_proc_eoc (char *buf, char **s
(unsigned char *) &peoc, (unsigned char *) &peoc,
sizeof (clearEocParm_t)); sizeof (clearEocParm_t));
@ -2417,7 +2399,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
int tn7dsl_clear_eoc_setup(void) int tn7dsl_clear_eoc_setup(void)
{ {
int i; int i;
@@ -4624,14 +4530,10 @@ int tn7dsl_proc_write_stats (struct file @@ -4591,14 +4494,10 @@ int tn7dsl_proc_write_stats (struct file
} }
@ -2433,13 +2415,12 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
typedef struct typedef struct
{ {
@@ -4712,197 +4614,185 @@ int tn7dsl_proc_train_mode_export (char @@ -4679,197 +4578,185 @@ int tn7dsl_proc_train_mode_export (char
} }
- if(len <= count) - if(len <= count)
+ for (i = 0; (i < num_entries) ; i++) - {
{
- for (i = ctr; ((i < num_entries)&& (len <= count)) ; i++) - for (i = ctr; ((i < num_entries)&& (len <= count)) ; i++)
- { - {
- /* - /*
@ -2453,21 +2434,22 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
- else - else
- break; - break;
- } - }
+ seq_printf(m, "%s\t\t\t%#x\n", - }
+ dsl_modes[i].mode_name, dsl_modes[i].mode_value); -
}
- /* - /*
- * Data was completely written - * Data was completely written
- */ - */
- if (i >= num_entries) - if (i >= num_entries)
- { + for (i = 0; (i < num_entries) ; i++)
{
- /* - /*
- * We are done with this - * We are done with this
- */ - */
- *eof = 1; - *eof = 1;
- ctr = 0; - ctr = 0;
- } + seq_printf(m, "%s\t\t\t%#x\n",
+ dsl_modes[i].mode_name, dsl_modes[i].mode_value);
}
- else - else
- { - {
- /* - /*
@ -2475,7 +2457,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
- * terminate the buffer. - * terminate the buffer.
- */ - */
- *(cp + len) = '\0'; - *(cp + len) = '\0';
-
- /* - /*
- * Save the value of the counter for the next read for the rest of the - * Save the value of the counter for the next read for the rest of the
- * data. - * data.
@ -2712,7 +2694,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
} }
start = (indx -1) * 128; start = (indx -1) * 128;
@@ -4911,39 +4801,89 @@ static int tn7dsl_proc_HLINpsdsIndx(char @@ -4878,39 +4765,89 @@ static int tn7dsl_proc_HLINpsdsIndx(char
{ {
if (!(i%8)) if (!(i%8))
{ {
@ -2817,7 +2799,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
#endif #endif
#endif //TR69_HLIN_IN #endif //TR69_HLIN_IN
// UR8_MERGE_END CQ10979* // UR8_MERGE_END CQ10979*
@@ -4951,64 +4891,48 @@ int tn7dsl_proc_HLINpsds4(char* buf, cha @@ -4918,64 +4855,48 @@ int tn7dsl_proc_HLINpsds4(char* buf, cha
// * UR8_MERGE_START CQ11057 Jack Zhang // * UR8_MERGE_START CQ11057 Jack Zhang
#ifdef TR69_PMD_IN #ifdef TR69_PMD_IN
#ifndef NO_ADV_STATS #ifndef NO_ADV_STATS
@ -2897,7 +2879,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
} }
@@ -5016,19 +4940,28 @@ int tn7dsl_proc_PMDus(char* buf, char ** @@ -4983,19 +4904,28 @@ int tn7dsl_proc_PMDus(char* buf, char **
for (i=0; i<pIhw->AppData.max_us_tones; i++) for (i=0; i<pIhw->AppData.max_us_tones; i++)
{ {
if (!(i%16)) if (!(i%16))
@ -2937,15 +2919,11 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
// * UR8_MERGE_END CQ11057 * // * UR8_MERGE_END CQ11057 *
--- a/tn7sar.c --- a/tn7sar.c
+++ b/tn7sar.c +++ b/tn7sar.c
@@ -1553,44 +1553,70 @@ int tn7sar_oam_generation(void *privCont @@ -1547,44 +1547,66 @@ int tn7sar_oam_generation(void *privCont
return 0; return 0;
} }
-int tn7sar_proc_oam_ping(char* buf, char **start, off_t offset, int count,int *eof, void *data) -int tn7sar_proc_oam_ping(char* buf, char **start, off_t offset, int count,int *eof, void *data)
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
+#define PDE_DATA(inode) PDE(inode)->data
+#endif
+
+static int tn7sar_proc_oam_ping(struct seq_file *m, void *data) +static int tn7sar_proc_oam_ping(struct seq_file *m, void *data)
{ {
- int len = 0; - int len = 0;
@ -3020,7 +2998,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
struct atm_dev *dev; struct atm_dev *dev;
Tn7AtmPrivate *priv; Tn7AtmPrivate *priv;
int i, j, k; int i, j, k;
@@ -1599,21 +1625,19 @@ int tn7sar_proc_sar_stat(char* buf, char @@ -1593,21 +1615,19 @@ int tn7sar_proc_sar_stat(char* buf, char
unsigned int *pStateBase, *pSarStat; unsigned int *pStateBase, *pSarStat;
HAL_FUNCTIONS *pHalFunc; HAL_FUNCTIONS *pHalFunc;
HAL_DEVICE *pHalDev; HAL_DEVICE *pHalDev;
@ -3045,7 +3023,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
k=0; k=0;
for(j=0;j<4;j++) for(j=0;j<4;j++)
{ {
@@ -1626,26 +1650,16 @@ int tn7sar_proc_sar_stat(char* buf, char @@ -1620,26 +1640,16 @@ int tn7sar_proc_sar_stat(char* buf, char
{ {
if((char *)*pSarStat == NULL) if((char *)*pSarStat == NULL)
break; break;
@ -3076,7 +3054,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
} }
} }
@@ -1654,9 +1668,22 @@ int tn7sar_proc_sar_stat(char* buf, char @@ -1648,9 +1658,22 @@ int tn7sar_proc_sar_stat(char* buf, char
} }
} }

@ -1,6 +1,6 @@
--- a/tn7dsl.c --- a/tn7dsl.c
+++ b/tn7dsl.c +++ b/tn7dsl.c
@@ -363,7 +363,7 @@ static void tn7dsl_chng_modulation(void* @@ -350,7 +350,7 @@ static void tn7dsl_chng_modulation(void*
static unsigned int tn7dsl_set_modulation(void* data, int flag); static unsigned int tn7dsl_set_modulation(void* data, int flag);
static void tn7dsl_ctrl_fineGain(int value); static void tn7dsl_ctrl_fineGain(int value);
static void tn7dsl_set_fineGainValue(int value); static void tn7dsl_set_fineGainValue(int value);
@ -9,7 +9,7 @@
void *buffer, size_t * lenp); void *buffer, size_t * lenp);
static void tn7dsl_register_dslss_led(void); static void tn7dsl_register_dslss_led(void);
void tn7dsl_dslmod_sysctl_register(void); void tn7dsl_dslmod_sysctl_register(void);
@@ -3505,7 +3505,7 @@ unsigned int tn7dsl_get_memory(unsigned @@ -3488,7 +3488,7 @@ unsigned int tn7dsl_get_memory(unsigned
@ -18,21 +18,21 @@
void *buffer, size_t *lenp) void *buffer, size_t *lenp)
{ {
char *ptr; char *ptr;
@@ -3631,7 +3631,7 @@ static int dslmod_sysctl(ctl_table *ctl, @@ -3603,7 +3603,7 @@ static int dslmod_sysctl(ctl_table *ctl,
} }
-ctl_table dslmod_table[] = { -ctl_table dslmod_table[] = {
+struct ctl_table dslmod_table[] = { +struct ctl_table dslmod_table[] = {
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33) {
{DEV_DSLMOD, "dslmod", info, DSL_MOD_SIZE, 0644, NULL, NULL, &dslmod_sysctl, &sysctl_string} .procname = "dslmod",
#else .data = info,
@@ -3649,7 +3649,7 @@ ctl_table dslmod_table[] = { @@ -3617,7 +3617,7 @@ ctl_table dslmod_table[] = {
}; };
/* Make sure that /proc/sys/dev is there */ /* Make sure that /proc/sys/dev is there */
-ctl_table dslmod_root_table[] = { -ctl_table dslmod_root_table[] = {
+struct ctl_table dslmod_root_table[] = { +struct ctl_table dslmod_root_table[] = {
#ifdef CONFIG_PROC_FS #ifdef CONFIG_PROC_FS
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33) {
{CTL_DEV, "dev", NULL, 0, 0555, dslmod_table} .procname = "dev",

@ -1,6 +1,6 @@
--- a/tn7atm.c --- a/tn7atm.c
+++ b/tn7atm.c +++ b/tn7atm.c
@@ -856,7 +856,7 @@ static int __init tn7atm_irq_request (st @@ -845,7 +845,7 @@ static int __init tn7atm_irq_request (st
priv->sar_irq = LNXINTNUM (ATM_SAR_INT); /* Interrupt line # */ priv->sar_irq = LNXINTNUM (ATM_SAR_INT); /* Interrupt line # */
@ -9,7 +9,7 @@
printk ("Could not register tn7atm_sar_irq\n"); printk ("Could not register tn7atm_sar_irq\n");
/* /*
@@ -880,7 +880,7 @@ static int __init tn7atm_irq_request (st @@ -869,7 +869,7 @@ static int __init tn7atm_irq_request (st
* Reigster Receive interrupt A * Reigster Receive interrupt A
*/ */
priv->dsl_irq = LNXINTNUM (ATM_DSL_INT); /* Interrupt line # */ priv->dsl_irq = LNXINTNUM (ATM_DSL_INT); /* Interrupt line # */

Loading…
Cancel
Save