2010-03-07 18:16:07 +00:00
|
|
|
Index: sangam_atm-D7.05.01.00/tn7dsl.c
|
2010-02-04 09:47:20 +00:00
|
|
|
===================================================================
|
2010-11-15 18:33:09 +00:00
|
|
|
--- sangam_atm-D7.05.01.00.orig/tn7dsl.c 2010-11-09 18:32:33.478706990 +0100
|
|
|
|
+++ sangam_atm-D7.05.01.00/tn7dsl.c 2010-11-09 18:32:33.488706997 +0100
|
|
|
|
@@ -215,7 +215,11 @@
|
|
|
|
static struct led_funcs ledreg[2];
|
|
|
|
#endif
|
|
|
|
|
|
|
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33)
|
|
|
|
#define DEV_DSLMOD CTL_UNNUMBERED
|
|
|
|
+#else
|
|
|
|
+#define DEV_DSLMOD 0
|
|
|
|
+#endif
|
|
|
|
#define MAX_STR_SIZE 256
|
|
|
|
#define DSL_MOD_SIZE 256
|
|
|
|
|
|
|
|
@@ -3615,9 +3619,16 @@
|
2010-02-04 09:47:20 +00:00
|
|
|
*/
|
|
|
|
if(write)
|
|
|
|
{
|
|
|
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,32)
|
|
|
|
ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
|
|
|
|
-
|
|
|
|
+#else
|
|
|
|
+ ret = proc_dostring(ctl, write, buffer, lenp, 0);
|
|
|
|
+#endif
|
2010-11-15 18:33:09 +00:00
|
|
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33)
|
2010-02-04 09:47:20 +00:00
|
|
|
switch (ctl->ctl_name)
|
2010-11-15 18:33:09 +00:00
|
|
|
+#else
|
|
|
|
+ switch ((long)ctl->extra2)
|
|
|
|
+#endif
|
2010-02-04 09:47:20 +00:00
|
|
|
{
|
|
|
|
case DEV_DSLMOD:
|
2010-11-15 18:33:09 +00:00
|
|
|
ptr = strpbrk(info, " \t");
|
|
|
|
@@ -3701,14 +3712,29 @@
|
2010-02-04 09:47:20 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
len += sprintf(info+len, mod_req);
|
|
|
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,32)
|
|
|
|
ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
|
|
|
|
+#else
|
|
|
|
+ ret = proc_dostring(ctl, write, buffer, lenp, 0);
|
|
|
|
+#endif
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2010-11-15 18:33:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
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}
|
|
|
|
+#else
|
|
|
|
+ {
|
|
|
|
+ .procname = "dslmod",
|
|
|
|
+ .data = info,
|
|
|
|
+ .maxlen = DSL_MOD_SIZE,
|
|
|
|
+ .mode = 0644,
|
|
|
|
+ .proc_handler = &dslmod_sysctl,
|
|
|
|
+ .extra2 = (void *)DEV_DSLMOD,
|
|
|
|
+ }
|
|
|
|
+#endif
|
|
|
|
,
|
|
|
|
{0}
|
|
|
|
};
|
|
|
|
@@ -3716,7 +3742,16 @@
|
|
|
|
/* Make sure that /proc/sys/dev is there */
|
|
|
|
ctl_table dslmod_root_table[] = {
|
|
|
|
#ifdef CONFIG_PROC_FS
|
|
|
|
+ #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33)
|
|
|
|
{CTL_DEV, "dev", NULL, 0, 0555, dslmod_table}
|
|
|
|
+ #else
|
|
|
|
+ {
|
|
|
|
+ .procname = "dev",
|
|
|
|
+ .maxlen = 0,
|
|
|
|
+ .mode = 0555,
|
|
|
|
+ .child = dslmod_table,
|
|
|
|
+ }
|
|
|
|
+ #endif
|
|
|
|
,
|
|
|
|
#endif /* CONFIG_PROC_FS */
|
|
|
|
{0}
|