4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-13 01:39:10 +08:00

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

fix can warning
This commit is contained in:
zms123456 2024-04-12 16:00:49 +08:00 committed by Meco Man
parent ea1ab21051
commit 24a279115f

View File

@ -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;