2019-05-28 16:57:21 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2010-03-30 13:56:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) ST-Ericsson AB 2010
|
2013-04-22 23:57:01 +00:00
|
|
|
* Author: Sjur Brendeland
|
2010-03-30 13:56:21 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CFFRML_H_
|
|
|
|
#define CFFRML_H_
|
|
|
|
#include <net/caif/caif_layer.h>
|
2011-05-13 02:44:02 +00:00
|
|
|
#include <linux/netdevice.h>
|
2010-03-30 13:56:21 +00:00
|
|
|
|
|
|
|
struct cffrml;
|
2011-05-13 02:44:02 +00:00
|
|
|
struct cflayer *cffrml_create(u16 phyid, bool use_fcs);
|
|
|
|
void cffrml_free(struct cflayer *layr);
|
2010-03-30 13:56:21 +00:00
|
|
|
void cffrml_set_uplayer(struct cflayer *this, struct cflayer *up);
|
|
|
|
void cffrml_set_dnlayer(struct cflayer *this, struct cflayer *dn);
|
2011-05-13 02:43:59 +00:00
|
|
|
void cffrml_put(struct cflayer *layr);
|
|
|
|
void cffrml_hold(struct cflayer *layr);
|
2011-05-13 02:44:02 +00:00
|
|
|
int cffrml_refcnt_read(struct cflayer *layr);
|
2010-03-30 13:56:21 +00:00
|
|
|
|
|
|
|
#endif /* CFFRML_H_ */
|