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;
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);