diff options
author | Tom Rini <trini@konsulko.com> | 2022-01-15 07:34:46 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-01-15 07:34:46 -0500 |
commit | 0962da92a1dfb210eef8c936e33862812fa1b208 (patch) | |
tree | c72fd2621d37fcff8b834f104ef83200d47fbebf /env/fat.c | |
parent | 9b72d934c2f7d8ee894f87e082577743877eb76e (diff) | |
parent | 97f2a749d5126b2908dd282969c02c3632417c68 (diff) |
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 'env/fat.c')
-rw-r--r-- | env/fat.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -77,7 +77,7 @@ static int env_fat_save(void) * This printf is embedded in the messages from env_save that * will calling it. The missing \n is intentional. */ - printf("Unable to use %s %d:%d... ", + printf("Unable to use %s %d:%d... \n", CONFIG_ENV_FAT_INTERFACE, dev, part); return 1; } @@ -93,7 +93,7 @@ static int env_fat_save(void) * This printf is embedded in the messages from env_save that * will calling it. The missing \n is intentional. */ - printf("Unable to write \"%s\" from %s%d:%d... ", + printf("Unable to write \"%s\" from %s%d:%d... \n", file, CONFIG_ENV_FAT_INTERFACE, dev, part); return 1; } @@ -135,7 +135,7 @@ static int env_fat_load(void) * This printf is embedded in the messages from env_save that * will calling it. The missing \n is intentional. */ - printf("Unable to use %s %d:%d... ", + printf("Unable to use %s %d:%d... \n", CONFIG_ENV_FAT_INTERFACE, dev, part); goto err_env_relocate; } @@ -153,7 +153,7 @@ static int env_fat_load(void) * This printf is embedded in the messages from env_save that * will calling it. The missing \n is intentional. */ - printf("Unable to read \"%s\" from %s%d:%d... ", + printf("Unable to read \"%s\" from %s%d:%d... \n", CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part); goto err_env_relocate; } |