mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-17 08:40:14 +02:00
util/nvmutil: minor cleanup
SIZE_64KB no longer needed, and the malloc error is needlessly verbose Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
@@ -28,7 +28,6 @@ uint8_t hextonum(char chs), rhex(void);
|
|||||||
|
|
||||||
#define SIZE_8KB 0x2000
|
#define SIZE_8KB 0x2000
|
||||||
#define SIZE_16KB 0x4000
|
#define SIZE_16KB 0x4000
|
||||||
#define SIZE_64KB 0x10000
|
|
||||||
#define SIZE_128KB 0x20000
|
#define SIZE_128KB 0x20000
|
||||||
|
|
||||||
uint16_t mac[3] = {0, 0, 0};
|
uint16_t mac[3] = {0, 0, 0};
|
||||||
@@ -210,7 +209,7 @@ readGbe(void)
|
|||||||
/* cmd_copy also relies on this */
|
/* cmd_copy also relies on this */
|
||||||
char *buf = malloc(nf << (do_read[0] & do_read[1]));
|
char *buf = malloc(nf << (do_read[0] & do_read[1]));
|
||||||
if (buf == NULL)
|
if (buf == NULL)
|
||||||
err(errno, "Can't malloc %ld B for '%s'", partsize, filename);
|
err(errno, NULL);
|
||||||
|
|
||||||
/* we pread per-part, so each part has its own pointer: */
|
/* we pread per-part, so each part has its own pointer: */
|
||||||
/* if a do_read is 0, both pointers are the same; this accomplishes
|
/* if a do_read is 0, both pointers are the same; this accomplishes
|
||||||
|
|||||||
Reference in New Issue
Block a user