diff options
| author | Tom Rini <[email protected]> | 2022-04-28 13:46:31 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-04-28 13:46:31 -0400 |
| commit | e95afa56753cebcd20a5114b6d121f281b789006 (patch) | |
| tree | 0341804963b0b02bcd2ac0ddb1d306f804871938 /include/dm | |
| parent | 8b2b125e95c44bb007b4573945f4aedb8a56222c (diff) | |
| parent | 53ee48b67302e188dc2805cef393707975b305c8 (diff) | |
Merge branch '2022-04-28-led-updates'
- DM GPIO bugfix
- LED related code clean-ups
- Fix some of the DM/LED tests
- Update the LED dt binding doc
Diffstat (limited to 'include/dm')
| -rw-r--r-- | include/dm/device.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/dm/device.h b/include/dm/device.h index b474888d025..5bdb10653f8 100644 --- a/include/dm/device.h +++ b/include/dm/device.h @@ -80,6 +80,9 @@ struct driver_info; */ #define DM_FLAG_VITAL (1 << 14) +/* Device must be probed after it was bound */ +#define DM_FLAG_PROBE_AFTER_BIND (1 << 15) + /* * One or multiple of these flags are passed to device_remove() so that * a selective device removal as specified by the remove-stage and the |
