@@ -233,15 +233,19 @@ rt_err_t rt_device_open(rt_device_t dev, rt_uint16_t oflag)
233
233
return - RT_EBUSY ;
234
234
}
235
235
236
- /* call device_open interface */
237
- if (device_open != RT_NULL )
236
+ /* device is not opened or opened by other oflag, call device_open interface */
237
+ if (!(dev -> open_flag & RT_DEVICE_OFLAG_OPEN ) ||
238
+ ((dev -> open_flag & RT_DEVICE_OFLAG_MASK ) | (oflag & RT_DEVICE_OFLAG_MASK )))
238
239
{
239
- result = device_open (dev , oflag );
240
- }
241
- else
242
- {
243
- /* set open flag */
244
- dev -> open_flag = (oflag & RT_DEVICE_OFLAG_MASK );
240
+ if (device_open != RT_NULL )
241
+ {
242
+ result = device_open (dev , oflag );
243
+ }
244
+ else
245
+ {
246
+ /* set open flag */
247
+ dev -> open_flag = (oflag & RT_DEVICE_OFLAG_MASK );
248
+ }
245
249
}
246
250
247
251
/* set open flag */
@@ -251,7 +255,7 @@ rt_err_t rt_device_open(rt_device_t dev, rt_uint16_t oflag)
251
255
252
256
dev -> ref_count ++ ;
253
257
/* don't let bad things happen silently. If you are bitten by this assert,
254
- * please set the ref_count to a bigger type. */
258
+ * please set the ref_count to a bigger type. */
255
259
RT_ASSERT (dev -> ref_count != 0 );
256
260
}
257
261
@@ -475,13 +479,13 @@ rt_err_t rt_device_bind_driver(rt_device_t device, rt_driver_t driver, void *nod
475
479
}
476
480
477
481
device -> drv = driver ;
478
- #ifdef RT_USING_DEVICE_OPS
482
+ #ifdef RT_USING_DEVICE_OPS
479
483
device -> ops = driver -> dev_ops ;
480
- #endif
484
+ #endif
481
485
device -> dtb_node = node ;
482
486
483
487
return RT_EOK ;
484
- }
488
+ }
485
489
RTM_EXPORT (rt_device_bind_driver );
486
490
487
491
/**
0 commit comments