소스 검색

[components][drivers][can]fix can warning in 64bit cpu (#8772)

fix can warning
zms123456 1 년 전
부모
커밋
24a279115f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      components/drivers/can/can.c

+ 1 - 1
components/drivers/can/can.c

@@ -515,7 +515,7 @@ static rt_err_t rt_can_control(struct rt_device *dev,
 
     case RT_CAN_CMD_SET_PRIV:
         /* configure device */
-        if ((rt_uint32_t)args != can->config.privmode)
+        if ((rt_uint32_t)(rt_ubase_t)args != can->config.privmode)
         {
             int i;
             rt_base_t level;