From 1a9b46b829d45d7cee28c46d881aaff5bc0386ba Mon Sep 17 00:00:00 2001 From: OBattler Date: Mon, 4 Nov 2019 22:18:13 +0100 Subject: [PATCH] Removed the empty config structures for the PGC and the Image Manager 1024. --- src/video/vid_im1024.c | 11 ++--------- src/video/vid_pgc.c | 11 ++--------- 2 files changed, 4 insertions(+), 18 deletions(-) diff --git a/src/video/vid_im1024.c b/src/video/vid_im1024.c index 0f276a103..0a8ca6e6c 100644 --- a/src/video/vid_im1024.c +++ b/src/video/vid_im1024.c @@ -38,7 +38,7 @@ * This is implemented by holding a FIFO of unlimited depth in * the IM1024 to receive the data. * - * Version: @(#)vid_im1024.c 1.0.3 2019/03/03 + * Version: @(#)vid_im1024.c 1.0.4 2019/11/04 * * Authors: Fred N. van Kempen, * John Elliott, @@ -1008,13 +1008,6 @@ im1024_speed_changed(void *priv) } -static const device_config_t im1024_config[] = { - { - "", "", -1 - } -}; - - const device_t im1024_device = { "ImageManager 1024", DEVICE_ISA, 0, @@ -1022,5 +1015,5 @@ const device_t im1024_device = { im1024_available, im1024_speed_changed, NULL, - im1024_config + NULL }; diff --git a/src/video/vid_pgc.c b/src/video/vid_pgc.c index 6addc20b1..e8ccbee4b 100644 --- a/src/video/vid_pgc.c +++ b/src/video/vid_pgc.c @@ -44,7 +44,7 @@ * * This is expected to be done shortly. * - * Version: @(#)vid_pgc.c 1.0.4 2019/11/04 + * Version: @(#)vid_pgc.c 1.0.5 2019/11/04 * * Authors: Fred N. van Kempen, * John Elliott, @@ -2698,13 +2698,6 @@ pgc_standalone_init(const device_t *info) } -static const device_config_t pgc_config[] = { - { - "", "", -1 - } -}; - - const device_t pgc_device = { "PGC", DEVICE_ISA, 0, @@ -2714,5 +2707,5 @@ const device_t pgc_device = { NULL, pgc_speed_changed, NULL, - pgc_config + NULL };