summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-01-15 07:34:46 -0500
committerTom Rini <trini@konsulko.com>2022-01-15 07:34:46 -0500
commit0962da92a1dfb210eef8c936e33862812fa1b208 (patch)
treec72fd2621d37fcff8b834f104ef83200d47fbebf /cmd
parent9b72d934c2f7d8ee894f87e082577743877eb76e (diff)
parent97f2a749d5126b2908dd282969c02c3632417c68 (diff)
downloadu-boot-0962da92a1dfb210eef8c936e33862812fa1b208.tar.gz
Merge branch '2022-01-14-assorted-fixes'
- A number of fixes in various subsystems. This includes having the phy uclass track power-on and init counts as this should resolve some tricky functional problems on a number of platforms.
Diffstat (limited to 'cmd')
-rw-r--r--cmd/adc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/adc.c b/cmd/adc.c
index 16f914a030..75739bc8ee 100644
--- a/cmd/adc.c
+++ b/cmd/adc.c
@@ -81,8 +81,8 @@ static int do_adc_single(struct cmd_tbl *cmdtp, int flag, int argc,
ret = adc_channel_single_shot(argv[1], simple_strtol(argv[2], NULL, 0),
&data);
if (ret) {
- printf("Error getting single shot for device %s channel %s\n",
- argv[1], argv[2]);
+ printf("Error getting single shot for device %s channel %s (ret=%d)\n",
+ argv[1], argv[2], ret);
return CMD_RET_FAILURE;
}