From 2ca3ceab70956fb9e2754092bbd201020b8254a9 Mon Sep 17 00:00:00 2001 From: BernardXiong Date: Mon, 6 Jul 2015 18:24:56 +0800 Subject: [PATCH] [DeviceDrivers] code cleanup for CAN --- components/drivers/can/can.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/components/drivers/can/can.c b/components/drivers/can/can.c index e0db37701..0ed971053 100644 --- a/components/drivers/can/can.c +++ b/components/drivers/can/can.c @@ -322,10 +322,6 @@ static rt_err_t rt_can_open(struct rt_device *dev, rt_uint16_t oflag) /* configure low level device */ can->ops->control(can, RT_DEVICE_CTRL_SET_INT, (void *)RT_DEVICE_FLAG_INT_RX); } - else - { - can->can_rx = RT_NULL; - } } if (can->can_tx == RT_NULL) @@ -356,10 +352,6 @@ static rt_err_t rt_can_open(struct rt_device *dev, rt_uint16_t oflag) /* configure low level device */ can->ops->control(can, RT_DEVICE_CTRL_SET_INT, (void *)RT_DEVICE_FLAG_INT_TX); } - else - { - can->can_tx = RT_NULL; - } } can->ops->control(can, RT_DEVICE_CTRL_SET_INT, (void *)RT_DEVICE_CAN_INT_ERR); -- GitLab