Nico Huber has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/30154
Change subject: libflashrom.h: Remove line breaks in function signatures ......................................................................
libflashrom.h: Remove line breaks in function signatures
I was once told we avoid such line breaks for better grep'ability.
Change-Id: I9d9afb884d92f1edc3a806fa7e2d43808748d0f9 Signed-off-by: Nico Huber nico.huber@secunet.com --- M libflashrom.h 1 file changed, 2 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/54/30154/1
diff --git a/libflashrom.h b/libflashrom.h index 38c95d2..abff398 100644 --- a/libflashrom.h +++ b/libflashrom.h @@ -63,10 +63,8 @@
struct flashrom_layout; int flashrom_layout_read_from_ifd(struct flashrom_layout **, struct flashrom_flashctx *, const void *dump, size_t len); -int flashrom_layout_read_fmap_from_rom(struct flashrom_layout **, - struct flashrom_flashctx *, off_t offset, size_t length); -int flashrom_layout_read_fmap_from_buffer(struct flashrom_layout **layout, - struct flashrom_flashctx *, const uint8_t *buf, size_t len); +int flashrom_layout_read_fmap_from_rom(struct flashrom_layout **, struct flashrom_flashctx *, off_t offset, size_t length); +int flashrom_layout_read_fmap_from_buffer(struct flashrom_layout **layout, struct flashrom_flashctx *, const uint8_t *buf, size_t len); int flashrom_layout_include_region(struct flashrom_layout *, const char *name); void flashrom_layout_release(struct flashrom_layout *); void flashrom_layout_set(struct flashrom_flashctx *, const struct flashrom_layout *);