mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-06-21 15:43:21 +02:00
0b13c6a618
Most of the lls source files are missing SPDX-License-Identifier lines. Add appropriate IDs to these files, and remove other license info from the header. In once case, leave the existing id line and just remove the license reference text. Signed-off-by: Tim Bird <tim.bird@sony.com> Link: https://patch.msgid.link/20260522225508.24006-1-tim.bird@sony.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
18 lines
447 B
C
18 lines
447 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* IEEE 802.2 User Interface SAPs for Linux, data structures and indicators.
|
|
*
|
|
* Copyright (c) 2001 by Jay Schulist <jschlst@samba.org>
|
|
*/
|
|
#ifndef __LINUX_LLC_H
|
|
#define __LINUX_LLC_H
|
|
|
|
#include <uapi/linux/llc.h>
|
|
|
|
#define LLC_SAP_DYN_START 0xC0
|
|
#define LLC_SAP_DYN_STOP 0xDE
|
|
#define LLC_SAP_DYN_TRIES 4
|
|
|
|
#define llc_ui_skb_cb(__skb) ((struct sockaddr_llc *)&((__skb)->cb[0]))
|
|
#endif /* __LINUX_LLC_H */
|