summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-04-06 18:59:49 +0100
committerLeah Rowe <leah@libreboot.org>2023-04-06 19:06:07 +0100
commit7c403fcd9b9920e202773c04accc79701c45ffbc (patch)
treeeda80a250b8f3ddbf05417e8f3b8a2b6b7737822 /util
parent1fb5f7c6e0eac156e13430d6cece0969feccf4d9 (diff)
util/nvmutil: remove unnecessary debug messages
these were put in when i was testing the feature to limit read/written bytes in loading/saving of files
Diffstat (limited to 'util')
-rw-r--r--util/nvmutil/nvmutil.c29
1 files changed, 8 insertions, 21 deletions
diff --git a/util/nvmutil/nvmutil.c b/util/nvmutil/nvmutil.c
index 42ef5fb..cdfcbc3 100644
--- a/util/nvmutil/nvmutil.c
+++ b/util/nvmutil/nvmutil.c
@@ -134,13 +134,10 @@ main(int argc, char *argv[])
else if (cmd != NULL)
(*cmd)();
- if (gbeFileModified) {
+ if (gbeFileModified)
writeGbeFile(&fd, FILENAME);
- } else if ((cmd != &cmd_dump)) {
- printf("File `%s` not modified.\n", FILENAME);
- if (gbeWriteAttempted)
- errno = 0;
- }
+ else if (gbeWriteAttempted && (cmd != &cmd_dump))
+ errno = 0;
nvmutil_exit:
if ((errno != 0) && (cmd != &cmd_dump))
@@ -152,7 +149,7 @@ void
readGbeFile(int *fd, const char *path, int flags, size_t nr)
{
struct stat st;
- int p, r, tr;
+ int p, r;
if (opendir(path) != NULL)
err(errno = EISDIR, "%s", path);
@@ -167,16 +164,14 @@ readGbeFile(int *fd, const char *path, int flags, size_t nr)
else if (errno != 0)
err(errno, "%s", path);
- for (tr = 0, p = 0; p < 2; p++) {
+ for (p = 0; p < 2; p++) {
if (skipread[p])
continue;
if ((r = pread((*fd), (uint8_t *) gbe[p], nr, p << 12)) == -1)
err(errno, "%s", path);
- tr += r;
if (big_endian)
byteswap(nr, p);
}
- printf("%d bytes read from file: `%s`\n", tr, path);
}
void
@@ -396,34 +391,26 @@ byteswap(int n, int partnum)
void
writeGbeFile(int *fd, const char *filename)
{
- int p, nw, tw;
+ int p, nw;
errno = 0;
if ((gbe[0] != gbe[1]) && (gbe[0] < gbe[1]))
nw = 128; /* copy/swap command, so only write the nvm part */
else
nw = SIZE_4KB;
- for (tw = 0, p = 0; p < 2; p++) {
+ for (p = 0; p < 2; p++) {
if (gbe[0] > gbe[1])
p ^= 1;
- if (nvmPartModified[p]) {
- printf("Part %d modified\n", p);
- } else {
- fprintf (stderr,
- "Part %d NOT modified\n", p);
+ if (!nvmPartModified[p])
goto next_part;
- }
if (big_endian)
byteswap(nw, p);
if (pwrite((*fd), (uint8_t *) gbe[p], nw, p << 12) != nw)
err(errno, "%s", filename);
- tw += nw;
next_part:
if (gbe[0] > gbe[1])
p ^= 1;
}
if (close((*fd)))
err(errno, "%s", filename);
- else
- printf("%d bytes written to file: `%s`\n", tw, filename);
}