mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-07-25 02:43:26 -04:00
Add appropriate SPDX-License-Identifier lines to llc header (.h) files, and remove other license text from the files. Signed-off-by: Tim Bird <tim.bird@sony.com> Link: https://patch.msgid.link/20260523002354.28831-1-tim.bird@sony.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
27 lines
806 B
C
27 lines
806 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef LLC_SAP_H
|
|
#define LLC_SAP_H
|
|
|
|
#include <asm/types.h>
|
|
|
|
/*
|
|
* Copyright (c) 1997 by Procom Technology,Inc.
|
|
* 2001-2003 by Arnaldo Carvalho de Melo <acme@conectiva.com.br>
|
|
*/
|
|
struct llc_sap;
|
|
struct net_device;
|
|
struct sk_buff;
|
|
struct sock;
|
|
|
|
void llc_sap_rtn_pdu(struct llc_sap *sap, struct sk_buff *skb);
|
|
void llc_save_primitive(struct sock *sk, struct sk_buff *skb,
|
|
unsigned char prim);
|
|
struct sk_buff *llc_alloc_frame(struct sock *sk, struct net_device *dev,
|
|
u8 type, u32 data_size);
|
|
|
|
void llc_build_and_send_test_pkt(struct llc_sap *sap, struct sk_buff *skb,
|
|
unsigned char *dmac, unsigned char dsap);
|
|
void llc_build_and_send_xid_pkt(struct llc_sap *sap, struct sk_buff *skb,
|
|
unsigned char *dmac, unsigned char dsap);
|
|
#endif /* LLC_SAP_H */
|