Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

caif: Remove unused attributes from struct cflayer

Signed-off-by: Sjur Brændeland <sjur.brandeland@stericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

sjur.brandeland@stericsson.com and committed by
David S. Miller
8aa953d0 e977b4cf

-4
-4
include/net/caif/caif_layer.h
··· 121 121 * @transmit: Packet transmit funciton. 122 122 * @ctrlcmd: Used for control signalling upwards in the stack. 123 123 * @modemcmd: Used for control signaling downwards in the stack. 124 - * @prio: Priority of this layer. 125 124 * @id: The identity of this layer 126 - * @type: The type of this layer 127 125 * @name: Name of the layer. 128 126 * 129 127 * This structure defines the layered structure in CAIF. ··· 228 230 */ 229 231 int (*modemcmd) (struct cflayer *layr, enum caif_modemcmd ctrl); 230 232 231 - unsigned short prio; 232 233 unsigned int id; 233 - unsigned int type; 234 234 char name[CAIF_LAYER_NAME_SZ]; 235 235 }; 236 236