summaryrefslogtreecommitdiff
path: root/net/ieee802154/af802154.h
diff options
context:
space:
mode:
authorAlexander Aring <alex.aring@gmail.com>2014-12-31 18:39:10 (GMT)
committerMarcel Holtmann <marcel@holtmann.org>2015-01-03 00:49:24 (GMT)
commit78f821b648267d3ee1a63093cd0c41cc99b97727 (patch)
treeea8b300e8f080c392210f2050c35ef1ba93e3076 /net/ieee802154/af802154.h
parent79300e3a438f93c7431b4bf40fa18580ccb34be1 (diff)
downloadlinux-78f821b648267d3ee1a63093cd0c41cc99b97727.tar.xz
ieee802154: socket: put handling into one file
This patch puts all related socket handling into one file. This is just a cleanup to do all socket handling stuff inside of one implementation file. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/ieee802154/af802154.h')
-rw-r--r--net/ieee802154/af802154.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/net/ieee802154/af802154.h b/net/ieee802154/af802154.h
deleted file mode 100644
index 343b63e..0000000
--- a/net/ieee802154/af802154.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Internal interfaces for ieee 802.15.4 address family.
- *
- * Copyright 2007, 2008, 2009 Siemens AG
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * Written by:
- * Sergey Lapin <slapin@ossfans.org>
- * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
- */
-
-#ifndef AF802154_H
-#define AF802154_H
-
-struct sk_buff;
-struct net_device;
-struct ieee802154_addr;
-extern struct proto ieee802154_raw_prot;
-extern struct proto ieee802154_dgram_prot;
-void ieee802154_raw_deliver(struct net_device *dev, struct sk_buff *skb);
-int ieee802154_dgram_deliver(struct net_device *dev, struct sk_buff *skb);
-struct net_device *ieee802154_get_dev(struct net *net,
- const struct ieee802154_addr *addr);
-
-#endif