Linux Audio

Check our new training course

Linux kernel drivers training

May 6-19, 2025
Register
Loading...
v6.13.7
 1/* SPDX-License-Identifier: GPL-1.0+ */
 2/*
 3 * Bond several ethernet interfaces into a Cisco, running 'Etherchannel'.
 4 *
 5 * Portions are (c) Copyright 1995 Simon "Guru Aleph-Null" Janes
 6 * NCM: Network and Communications Management, Inc.
 7 *
 8 * BUT, I'm the one who modified it for ethernet, so:
 9 * (c) Copyright 1999, Thomas Davis, tadavis@lbl.gov
 
 
 
10 *
11 */
12
13#ifndef _BONDING_PRIV_H
14#define _BONDING_PRIV_H
15#include <generated/utsrelease.h>
16
17#define DRV_NAME	"bonding"
18#define DRV_DESCRIPTION	"Ethernet Channel Bonding Driver"
19
20#define bond_version DRV_DESCRIPTION ": v" UTS_RELEASE "\n"
21
22#endif
v6.2
 
 1/*
 2 * Bond several ethernet interfaces into a Cisco, running 'Etherchannel'.
 3 *
 4 * Portions are (c) Copyright 1995 Simon "Guru Aleph-Null" Janes
 5 * NCM: Network and Communications Management, Inc.
 6 *
 7 * BUT, I'm the one who modified it for ethernet, so:
 8 * (c) Copyright 1999, Thomas Davis, tadavis@lbl.gov
 9 *
10 *	This software may be used and distributed according to the terms
11 *	of the GNU Public License, incorporated herein by reference.
12 *
13 */
14
15#ifndef _BONDING_PRIV_H
16#define _BONDING_PRIV_H
17#include <generated/utsrelease.h>
18
19#define DRV_NAME	"bonding"
20#define DRV_DESCRIPTION	"Ethernet Channel Bonding Driver"
21
22#define bond_version DRV_DESCRIPTION ": v" UTS_RELEASE "\n"
23
24#endif