未验证 提交 25ac5039 编写于 作者: D David Lin 提交者: GitHub

Update pwm.c

rt_malloc -> rt_calloc
上级 b2d33e91
...@@ -185,16 +185,14 @@ int fh_pwm_probe(void *priv_data) ...@@ -185,16 +185,14 @@ int fh_pwm_probe(void *priv_data)
PWM_Enable(pwm_obj, RT_FALSE); PWM_Enable(pwm_obj, RT_FALSE);
pwm_dev = rt_malloc(sizeof(struct rt_device)); pwm_dev = rt_calloc(sizeof(struct rt_device));
if (pwm_dev == RT_NULL) if (pwm_dev == RT_NULL)
{ {
rt_kprintf("ERROR: %s rt_device malloc failed\n", __func__); rt_kprintf("ERROR: %s rt_device calloc failed\n", __func__);
return -RT_EIO; return -RT_ENOMEM;
} }
rt_memset(pwm_dev, 0, sizeof(struct rt_device));
pwm_dev->user_data = &pwm_drv; pwm_dev->user_data = &pwm_drv;
pwm_dev->open =fh_pwm_open; pwm_dev->open =fh_pwm_open;
pwm_dev->close = fh_pwm_close; pwm_dev->close = fh_pwm_close;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册