1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

Fix the roboswitch code for the WRT350N

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10531 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
mb
2008-02-27 22:35:41 +00:00
parent 42c72797dc
commit 3814202702
4 changed files with 275 additions and 98 deletions

View File

@@ -20,19 +20,19 @@
typedef int (*switch_handler)(void *driver, char *buf, int nr);
typedef struct {
char *name;
const char *name;
switch_handler read, write;
} switch_config;
typedef struct {
struct list_head list;
char *name;
char *version;
char *interface;
const char *name;
const char *version;
const char *interface;
int cpuport;
int ports;
int vlans;
switch_config *driver_handlers, *port_handlers, *vlan_handlers;
const switch_config *driver_handlers, *port_handlers, *vlan_handlers;
void *data;
void *priv;
} switch_driver;
@@ -48,7 +48,7 @@ extern switch_vlan_config *switch_parse_vlan(switch_driver *driver, char *buf);
extern int switch_parse_media(char *buf);
extern int switch_print_media(char *buf, int media);
static inline char *strdup(char *str)
static inline char *strdup(const char *str)
{
char *new = kmalloc(strlen(str) + 1, GFP_KERNEL);
strcpy(new, str);