From 2900b3373d0f446939721d75706f02a79ba2ad44 Mon Sep 17 00:00:00 2001 From: Ryan Holtz Date: Fri, 25 Dec 2020 12:24:15 +0100 Subject: [PATCH] -sa1110, sa1111, sed1356: Turned off error logging. [Ryan Holtz] --- src/devices/machine/sa1110.cpp | 2 +- src/devices/machine/sa1111.cpp | 2 +- src/devices/video/sed1356.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/devices/machine/sa1110.cpp b/src/devices/machine/sa1110.cpp index 81fb66643b2..ec1d8833fbe 100644 --- a/src/devices/machine/sa1110.cpp +++ b/src/devices/machine/sa1110.cpp @@ -23,7 +23,7 @@ #define LOG_INTC (1 << 12) #define LOG_ALL (LOG_UNKNOWN | LOG_UART | LOG_MCP | LOG_SSP | LOG_OSTIMER | LOG_RTC | LOG_POWER | LOG_RESET | LOG_GPIO | LOG_INTC) -#define VERBOSE (LOG_ALL) +#define VERBOSE (0) // (LOG_ALL) #include "logmacro.h" DEFINE_DEVICE_TYPE(SA1110_PERIPHERALS, sa1110_periphs_device, "sa1110_periphs", "Intel XScale SA1110 Peripherals") diff --git a/src/devices/machine/sa1111.cpp b/src/devices/machine/sa1111.cpp index cc63d657c87..3569349be14 100644 --- a/src/devices/machine/sa1111.cpp +++ b/src/devices/machine/sa1111.cpp @@ -23,7 +23,7 @@ #define LOG_CARD (1 << 12) #define LOG_ALL (LOG_UNKNOWN | LOG_SBI | LOG_SK | LOG_USB | LOG_AUDIO | LOG_SSP | LOG_TRACK | LOG_MOUSE | LOG_GPIO | LOG_INTC | LOG_CARD) -#define VERBOSE (LOG_ALL) +#define VERBOSE (0) // (LOG_ALL) #include "logmacro.h" DEFINE_DEVICE_TYPE(SA1111, sa1111_device, "sa1111", "Intel SA1111 Microprocessor Companion Chip") diff --git a/src/devices/video/sed1356.cpp b/src/devices/video/sed1356.cpp index 7562a8d6d04..9dd2c501371 100644 --- a/src/devices/video/sed1356.cpp +++ b/src/devices/video/sed1356.cpp @@ -29,7 +29,7 @@ #define LOG_MPLUG_WR (1 << 12) #define LOG_ALL (LOG_MISC_RD | LOG_MISC_WR | LOG_LCD_RD | LOG_LCD_WR | LOG_CRT_RD | LOG_CRT_WR | LOG_BITBLT_RD | LOG_BITBLT_WR | LOG_LUT_RD | LOG_LUT_WR | LOG_MPLUG_RD | LOG_MPLUG_WR) -#define VERBOSE (LOG_ALL) +#define VERBOSE (0) // (LOG_ALL) #include "logmacro.h" DEFINE_DEVICE_TYPE(SED1356, sed1356_device, "sed1356", "Epson SED1356")