mirror of
https://github.com/torvalds/linux.git
synced 2024-11-06 03:51:48 +00:00
09009f30de
Add include files for the CAIF Core protocol stack. caif_layer.h - Defines the structure of the CAIF protocol layers cfcnfg.h - CAIF Configuration Module for services and link layers cfctrl.h - CAIF Control Protocol Layer cffrml.h - CAIF Framing Layer cfmuxl.h - CAIF Muxing Layer cfpkt.h - CAIF Packet layer (skb helper functions) cfserl.h - CAIF Serial Layer cfsrvl.h - CAIF Service Layer Signed-off-by: Sjur Braendeland <sjur.brandeland@stericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
17 lines
461 B
C
17 lines
461 B
C
/*
|
|
* Copyright (C) ST-Ericsson AB 2010
|
|
* Author: Sjur Brendeland/sjur.brandeland@stericsson.com
|
|
* License terms: GNU General Public License (GPL) version 2
|
|
*/
|
|
|
|
#ifndef CFFRML_H_
|
|
#define CFFRML_H_
|
|
#include <net/caif/caif_layer.h>
|
|
|
|
struct cffrml;
|
|
struct cflayer *cffrml_create(u16 phyid, bool DoFCS);
|
|
void cffrml_set_uplayer(struct cflayer *this, struct cflayer *up);
|
|
void cffrml_set_dnlayer(struct cflayer *this, struct cflayer *dn);
|
|
|
|
#endif /* CFFRML_H_ */
|