rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright (C) ST-Ericsson AB 2010 |
| 3 | * Author: Sjur Brendeland |
| 4 | * License terms: GNU General Public License (GPL) version 2 |
| 5 | */ |
| 6 | |
| 7 | #ifndef CFFRML_H_ |
| 8 | #define CFFRML_H_ |
| 9 | #include <net/caif/caif_layer.h> |
| 10 | #include <linux/netdevice.h> |
| 11 | |
| 12 | struct cffrml; |
| 13 | struct cflayer *cffrml_create(u16 phyid, bool use_fcs); |
| 14 | void cffrml_free(struct cflayer *layr); |
| 15 | void cffrml_set_uplayer(struct cflayer *this, struct cflayer *up); |
| 16 | void cffrml_set_dnlayer(struct cflayer *this, struct cflayer *dn); |
| 17 | void cffrml_put(struct cflayer *layr); |
| 18 | void cffrml_hold(struct cflayer *layr); |
| 19 | int cffrml_refcnt_read(struct cflayer *layr); |
| 20 | |
| 21 | #endif /* CFFRML_H_ */ |