1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

slipmux: remove inesc member

It's not needed anymore.
This commit is contained in:
Martine Lenders 2018-11-25 16:43:46 +01:00 committed by Martine Lenders
parent f11940973c
commit 8e827055f0
No known key found for this signature in database
GPG Key ID: CCD317364F63286F
2 changed files with 0 additions and 3 deletions

View File

@ -62,8 +62,6 @@ typedef struct {
slipdev_params_t config; /**< configuration parameters */
tsrb_t inbuf; /**< RX buffer */
uint8_t rxmem[SLIPDEV_BUFSIZE]; /**< memory used by RX buffer */
uint16_t inesc; /**< device previously received an escape
* byte */
} slipdev_t;
/**

View File

@ -209,7 +209,6 @@ void slipdev_setup(slipdev_t *dev, const slipdev_params_t *params)
{
/* set device descriptor fields */
dev->config = *params;
dev->inesc = 0U;
dev->netdev.driver = &slip_driver;
}