mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
2f0e807bc2
Commit d8d9ba8dc9
("net: 802: remove dead leftover after ipx driver removal")
remove these implementations but leave the declarations.
Signed-off-by: Yue Haibing <yuehaibing@huawei.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://lore.kernel.org/r/20230803135424.41664-1-yuehaibing@huawei.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
16 lines
403 B
C
16 lines
403 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _NET_P8022_H
|
|
#define _NET_P8022_H
|
|
|
|
struct net_device;
|
|
struct packet_type;
|
|
struct sk_buff;
|
|
|
|
struct datalink_proto *
|
|
register_8022_client(unsigned char type,
|
|
int (*func)(struct sk_buff *skb,
|
|
struct net_device *dev,
|
|
struct packet_type *pt,
|
|
struct net_device *orig_dev));
|
|
void unregister_8022_client(struct datalink_proto *proto);
|
|
#endif
|