aboutsummaryrefslogtreecommitdiffstats
path: root/writeprotect.h
diff options
context:
space:
mode:
Diffstat (limited to 'writeprotect.h')
-rw-r--r--writeprotect.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/writeprotect.h b/writeprotect.h
index bded4c85..2d99897f 100644
--- a/writeprotect.h
+++ b/writeprotect.h
@@ -18,34 +18,4 @@
#ifndef __WRITEPROTECT_H__
#define __WRITEPROTECT_H__ 1
-enum wp_mode {
- WP_MODE_UNKNOWN = -1,
- WP_MODE_HARDWARE, /* hardware WP pin determines status */
- WP_MODE_POWER_CYCLE, /* WP active until power off/on cycle */
- WP_MODE_PERMANENT, /* status register permanently locked,
- WP permanently enabled */
-};
-
-struct wp {
- int (*list_ranges)(const struct flashctx *flash);
- int (*set_range)(const struct flashctx *flash,
- unsigned int start, unsigned int len);
- int (*enable)(const struct flashctx *flash, enum wp_mode mode);
- int (*disable)(const struct flashctx *flash);
- int (*wp_status)(const struct flashctx *flash);
-};
-
-extern struct wp wp_generic;
-
-enum wp_mode get_wp_mode(const char *mode_str);
-
-/*
- * Generic write-protect stuff
- */
-
-struct modifier_bits {
- int sec; /* if 1, bp bits describe sectors */
- int tb; /* value of top/bottom select bit */
-};
-
#endif /* !__WRITEPROTECT_H__ */