summary refs log tree commit diff stats
path: root/include/hw/display/blizzard.h
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2024-09-03 17:07:25 +0100
committerPeter Maydell <peter.maydell@linaro.org>2024-10-01 14:40:29 +0100
commit9475dbee46d5a72ed6a63067816205b77cae36b5 (patch)
tree7236fc688cdbe42ce8cbf5782631c6be4892bb7b /include/hw/display/blizzard.h
parent9022e80a4235f272799720ee4e9037f6dae7cf0e (diff)
downloadfocaccia-qemu-9475dbee46d5a72ed6a63067816205b77cae36b5.tar.gz
focaccia-qemu-9475dbee46d5a72ed6a63067816205b77cae36b5.zip
hw/display: Remove Blizzard display device
Remove the blizzard display device, which was only used with the
n800 and n810 machines.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-id: 20240903160751.4100218-28-peter.maydell@linaro.org
Diffstat (limited to '')
-rw-r--r--include/hw/display/blizzard.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/hw/display/blizzard.h b/include/hw/display/blizzard.h
deleted file mode 100644
index 5b33018835..0000000000
--- a/include/hw/display/blizzard.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Epson S1D13744/S1D13745 (Blizzard/Hailstorm/Tornado) LCD/TV controller.
- *
- * Copyright (C) 2008 Nokia Corporation
- * Written by Andrzej Zaborowski
- *
- * This work is licensed under the terms of the GNU GPL, version 2 or later.
- * See the COPYING file in the top-level directory.
- */
-
-#ifndef HW_DISPLAY_BLIZZARD_H
-#define HW_DISPLAY_BLIZZARD_H
-
-
-void *s1d13745_init(qemu_irq gpio_int);
-void s1d13745_write(void *opaque, int dc, uint16_t value);
-void s1d13745_write_block(void *opaque, int dc,
-                          void *buf, size_t len, int pitch);
-uint16_t s1d13745_read(void *opaque, int dc);
-
-#endif