aboutsummaryrefslogtreecommitdiffstats
path: root/it87spi.c
diff options
context:
space:
mode:
Diffstat (limited to 'it87spi.c')
-rw-r--r--it87spi.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/it87spi.c b/it87spi.c
index cbf830bd..e5523285 100644
--- a/it87spi.c
+++ b/it87spi.c
@@ -290,6 +290,12 @@ static int it8716f_spi_chip_write_256(struct flashctx *flash, const uint8_t *buf
return 0;
}
+static int it8716f_shutdown(void *data)
+{
+ free(data);
+ return 0;
+}
+
static const struct spi_master spi_master_it87xx = {
.max_data_read = 3,
.max_data_write = MAX_DATA_UNSPECIFIED,
@@ -300,13 +306,6 @@ static const struct spi_master spi_master_it87xx = {
.write_aai = spi_chip_write_1,
};
-
-static int it8716f_shutdown(void *data)
-{
- free(data);
- return 0;
-}
-
static uint16_t it87spi_probe(uint16_t port)
{
uint8_t tmp = 0;