summaryrefslogtreecommitdiff
path: root/chip/g/blob.c
diff options
context:
space:
mode:
Diffstat (limited to 'chip/g/blob.c')
-rw-r--r--chip/g/blob.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/chip/g/blob.c b/chip/g/blob.c
index fde66aac9a..f288b2aacf 100644
--- a/chip/g/blob.c
+++ b/chip/g/blob.c
@@ -61,14 +61,9 @@ static void blob_written(struct consumer const *consumer, size_t count)
CPRINTS("Sending: count=%d buf=((%s))", count, buf);
}
-static void blob_flush(struct consumer const *consumer)
-{
-}
-
struct consumer const blob_consumer = {
.queue = &usb_to_blob,
.ops = &((struct consumer_ops const) {
.written = blob_written,
- .flush = blob_flush,
}),
};