flashrom.c: Remove 'force' param out of doit() function

This can be dropped now that the force param is embedded within
the flashctx struct.

BUG=none
BRANCH=none
TEST=none

Signed-off-by: Edward O'Callaghan <quasisec@google.com>
Change-Id: I0a35d712585ceb408ff5ca72bd0e8625af29918b
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/flashrom/+/2570467
Commit-Queue: Edward O'Callaghan <quasisec@chromium.org>
Tested-by: Edward O'Callaghan <quasisec@chromium.org>
Reviewed-by: Sam McNally <sammc@chromium.org>
diff --git a/flash.h b/flash.h
index 526a481..d3f78b5 100644
--- a/flash.h
+++ b/flash.h
@@ -385,7 +385,7 @@
  * 'diff_file' is not - comparison is done against the pre-operation chip
  * contents.
  */
-int doit(struct flashctx *flash, int force, const char *filename, int read_it,
+int doit(struct flashctx *flash, const char *filename, int read_it,
 	 int write_it, int erase_it, int verify_it, int extract_it,
 	 const char *diff_file, int do_diff);