summaryrefslogtreecommitdiffstats
path: root/libflashrom.c
diff options
context:
space:
mode:
Diffstat (limited to 'libflashrom.c')
-rw-r--r--libflashrom.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/libflashrom.c b/libflashrom.c
index fee60ffd1..721a11cfc 100644
--- a/libflashrom.c
+++ b/libflashrom.c
@@ -283,27 +283,6 @@ bool flashrom_flag_get(const struct flashrom_flashctx *const flashctx, const enu
*/
/**
- * @brief Mark given region as included.
- *
- * @param layout The layout to alter.
- * @param name The name of the region to include.
- *
- * @return 0 on success,
- * 1 if the given name can't be found.
- */
-int flashrom_layout_include_region(struct flashrom_layout *const layout, const char *name)
-{
- size_t i;
- for (i = 0; i < layout->num_entries; ++i) {
- if (!strcmp(layout->entries[i].name, name)) {
- layout->entries[i].included = true;
- return 0;
- }
- }
- return 1;
-}
-
-/**
* @brief Read a layout from the Intel ICH descriptor in the flash.
*
* Optionally verify that the layout matches the one in the given
@@ -507,19 +486,6 @@ _ret:
}
/**
- * @brief Free a layout.
- *
- * @param layout Layout to free.
- */
-void flashrom_layout_release(struct flashrom_layout *const layout)
-{
- if (layout == get_global_layout())
- return;
-
- free(layout);
-}
-
-/**
* @brief Set the active layout for a flash context.
*
* Note: This just sets a pointer. The caller must not release the layout