Changeset 753 for GPL/branches/uniaud32-exp/lib32/component.c
- Timestamp:
- Oct 22, 2022, 9:53:37 AM (3 years ago)
- File:
-
- 1 edited
-
GPL/branches/uniaud32-exp/lib32/component.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-exp/lib32/component.c
r737 r753 185 185 struct component *c; 186 186 187 dev_dbg(adev->parent, "Looking for component % zu\n", i);187 dev_dbg(adev->parent, "Looking for component %lu\n", i); 188 188 189 189 if (match->compare[i].component) … … 243 243 } 244 244 245 #ifndef TARGET_OS2246 245 if (!devres_open_group(adev->parent, adev, GFP_KERNEL)) 247 246 return -ENOMEM; 248 #endif 247 249 248 /* Found all components */ 250 249 ret = adev->ops->bind(adev->parent); 251 250 if (ret < 0) { 252 #ifndef TARGET_OS2253 251 devres_release_group(adev->parent, NULL); 254 252 if (ret != -EPROBE_DEFER) 255 253 dev_info(adev->parent, "adev bind failed: %d\n", ret); 256 #endif257 254 return ret; 258 255 } … … 626 623 * affecting anything else. 627 624 */ 628 #ifndef TARGET_OS2 625 629 626 if (!devres_open_group(adev->parent, NULL, GFP_KERNEL)) 630 627 return -ENOMEM; 631 #endif 628 632 629 /* 633 630 * Also open a group for the device itself: this allows us
Note:
See TracChangeset
for help on using the changeset viewer.
