#
-# Copyright (C) 2008 OpenWrt.org
+# Copyright (C) 2008-2010 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=button-hotplug
-PKG_RELEASE:=2
+PKG_RELEASE:=3
include $(INCLUDE_DIR)/package.mk
#include <linux/workqueue.h>
#include <linux/skbuff.h>
#include <linux/netlink.h>
-#include <net/sock.h>
+#include <linux/kobject.h>
#define DRV_NAME "button-hotplug"
-#define DRV_VERSION "0.4.0"
+#define DRV_VERSION "0.4.1"
#define DRV_DESC "Button Hotplug driver"
#define BH_SKB_SIZE 2048
const char *name;
};
-extern struct sock *uevent_sock;
extern u64 uevent_next_seqnum(void);
#define BH_MAP(_code, _name) \
struct bh_event *event = container_of(work, struct bh_event, work);
int ret = 0;
- if (!uevent_sock)
- goto out_free_event;
-
event->skb = alloc_skb(BH_SKB_SIZE, GFP_KERNEL);
if (!event->skb)
goto out_free_event;
goto out_free_skb;
NETLINK_CB(event->skb).dst_group = 1;
- netlink_broadcast(uevent_sock, event->skb, 0, 1, GFP_KERNEL);
+ broadcast_uevent(event->skb, 0, 1, GFP_KERNEL);
out_free_skb:
if (ret) {