|
@@ -48,7 +48,7 @@ void cn_queue_wrapper(struct work_struct *work)
|
|
|
}
|
|
|
|
|
|
static struct cn_callback_entry *
|
|
|
-cn_queue_alloc_callback_entry(char *name, struct cb_id *id,
|
|
|
+cn_queue_alloc_callback_entry(const char *name, struct cb_id *id,
|
|
|
void (*callback)(struct cn_msg *, struct netlink_skb_parms *))
|
|
|
{
|
|
|
struct cn_callback_entry *cbq;
|
|
@@ -78,7 +78,8 @@ int cn_cb_equal(struct cb_id *i1, struct cb_id *i2)
|
|
|
return ((i1->idx == i2->idx) && (i1->val == i2->val));
|
|
|
}
|
|
|
|
|
|
-int cn_queue_add_callback(struct cn_queue_dev *dev, char *name, struct cb_id *id,
|
|
|
+int cn_queue_add_callback(struct cn_queue_dev *dev, const char *name,
|
|
|
+ struct cb_id *id,
|
|
|
void (*callback)(struct cn_msg *, struct netlink_skb_parms *))
|
|
|
{
|
|
|
struct cn_callback_entry *cbq, *__cbq;
|
|
@@ -135,7 +136,7 @@ void cn_queue_del_callback(struct cn_queue_dev *dev, struct cb_id *id)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-struct cn_queue_dev *cn_queue_alloc_dev(char *name, struct sock *nls)
|
|
|
+struct cn_queue_dev *cn_queue_alloc_dev(const char *name, struct sock *nls)
|
|
|
{
|
|
|
struct cn_queue_dev *dev;
|
|
|
|