File tree 1 file changed +14
-10
lines changed
1 file changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -233,25 +233,29 @@ 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 */
248
252
if (result == RT_EOK || result == - RT_ENOSYS )
249
253
{
250
254
dev -> open_flag |= RT_DEVICE_OFLAG_OPEN ;
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
You can’t perform that action at this time.
0 commit comments