diff options
author | Sean Anderson | 2020-01-17 14:48:09 -0500 |
---|---|---|
committer | Simon Glass | 2020-02-05 19:33:46 -0700 |
commit | 7b9d60fc1ff67b3959a7db394084b27268a7686d (patch) | |
tree | 6196a41c5c8016aa5803d83dff50d83f4d5a543b /include | |
parent | 2f7c53cbd3e8094d2c4398b293a68304b7af721c (diff) |
cmd: Add command to dump drivers and compatible strings
This adds a subcommand to dm to dump out what drivers are installed, and their
compatible strings. I have found this useful in ensuring that I have the correct
drivers compiled, and that I have put in the correct compatible strings.
Signed-off-by Sean Anderson <seanga2@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/dm/util.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/dm/util.h b/include/dm/util.h index 348c2ace3c3..0ccb3fbadf4 100644 --- a/include/dm/util.h +++ b/include/dm/util.h @@ -39,6 +39,9 @@ static inline void dm_dump_devres(void) } #endif +/* Dump out a list of drivers */ +void dm_dump_drivers(void); + /** * Check if an of node should be or was bound before relocation. * |