summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2012-08-30 10:06:22 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2012-08-30 10:06:22 +0000
commit5bac802b5f64caf98dc7da81af8fbbbbefc91f97 (patch)
treec0fbddea4d50630a401e5bb90f031dbcf14bb7f3 /src
parent76571c816113e5152c2b8d9d32ded96ce8442e7c (diff)
Removed zero sized inline_config (no whatsnew)
Diffstat (limited to 'src')
-rw-r--r--src/emu/machine/pic8259.c1
-rw-r--r--src/emu/machine/pit8253.c1
-rw-r--r--src/emu/machine/s3c24xx.c2
-rw-r--r--src/emu/video/i8275.c1
-rw-r--r--src/emu/video/tms9927.c1
-rw-r--r--src/mame/machine/gaelco3d.c2
-rw-r--r--src/mame/machine/mathbox.c1
-rw-r--r--src/mess/audio/mea8000.c1
-rw-r--r--src/mess/machine/990_tap.c1
-rw-r--r--src/mess/machine/applefdc.c1
-rw-r--r--src/mess/machine/at45dbxx.c1
-rw-r--r--src/mess/machine/atarifdc.c1
-rw-r--r--src/mess/machine/ay31015.c1
-rw-r--r--src/mess/machine/beta.c1
-rw-r--r--src/mess/machine/ds1315.c1
-rw-r--r--src/mess/machine/e05a03.c1
-rw-r--r--src/mess/machine/er59256.c1
-rw-r--r--src/mess/machine/i8271.c1
-rw-r--r--src/mess/machine/kr2376.c1
-rw-r--r--src/mess/machine/mc68328.c1
-rw-r--r--src/mess/machine/mc6843.c1
-rw-r--r--src/mess/machine/mc6846.c1
-rw-r--r--src/mess/machine/mc6854.c1
-rw-r--r--src/mess/machine/mm58274c.c1
-rw-r--r--src/mess/machine/mos6530.c1
-rw-r--r--src/mess/machine/pc_lpt.c1
-rw-r--r--src/mess/machine/pcf8593.c1
-rw-r--r--src/mess/machine/pf10.c1
-rw-r--r--src/mess/machine/s3c44b0.c1
-rw-r--r--src/mess/machine/tf20.c1
-rw-r--r--src/mess/machine/upd7002.c1
-rw-r--r--src/mess/machine/upd765.c1
-rw-r--r--src/mess/video/apollo.c2
-rw-r--r--src/mess/video/k1ge.c1
-rw-r--r--src/mess/video/vtvideo.c1
35 files changed, 0 insertions, 38 deletions
diff --git a/src/emu/machine/pic8259.c b/src/emu/machine/pic8259.c
index 53b7a59bee6..ef7728d681d 100644
--- a/src/emu/machine/pic8259.c
+++ b/src/emu/machine/pic8259.c
@@ -453,7 +453,6 @@ DEVICE_GET_INFO( pic8259 ) {
switch ( state ) {
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(pic8259_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(pic8259); break;
diff --git a/src/emu/machine/pit8253.c b/src/emu/machine/pit8253.c
index e37db95ddd4..4d2c40aadfc 100644
--- a/src/emu/machine/pit8253.c
+++ b/src/emu/machine/pit8253.c
@@ -1159,7 +1159,6 @@ DEVICE_GET_INFO( pit8253 ) {
switch ( state ) {
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(pit8253_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(pit8253); break;
diff --git a/src/emu/machine/s3c24xx.c b/src/emu/machine/s3c24xx.c
index 97477e9665c..372175a7e4c 100644
--- a/src/emu/machine/s3c24xx.c
+++ b/src/emu/machine/s3c24xx.c
@@ -3708,8 +3708,6 @@ static DEVICE_GET_INFO( s3c24xx )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(s3c24xx_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
-// case DEVINFO_INT_CLASS: info->i = DEVICE_CLASS_PERIPHERAL; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(s3c24xx); break;
case DEVINFO_FCT_RESET: info->reset = DEVICE_RESET_NAME(s3c24xx); break;
diff --git a/src/emu/video/i8275.c b/src/emu/video/i8275.c
index f44a3abe0bf..210e6a52145 100644
--- a/src/emu/video/i8275.c
+++ b/src/emu/video/i8275.c
@@ -594,7 +594,6 @@ DEVICE_GET_INFO( i8275 )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(i8275_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(i8275); break;
diff --git a/src/emu/video/tms9927.c b/src/emu/video/tms9927.c
index 1c9d006b847..e38597f0917 100644
--- a/src/emu/video/tms9927.c
+++ b/src/emu/video/tms9927.c
@@ -314,7 +314,6 @@ DEVICE_GET_INFO( tms9927 )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(tms9927_state); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(tms9927); break;
diff --git a/src/mame/machine/gaelco3d.c b/src/mame/machine/gaelco3d.c
index 69f1a2636d4..6db65950c75 100644
--- a/src/mame/machine/gaelco3d.c
+++ b/src/mame/machine/gaelco3d.c
@@ -504,8 +504,6 @@ DEVICE_GET_INFO( gaelco_serial )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(gaelco_serial_state); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
- //case DEVINFO_INT_CLASS: info->i = DEVICE_CLASS_PERIPHERAL; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(gaelco_serial);break;
diff --git a/src/mame/machine/mathbox.c b/src/mame/machine/mathbox.c
index 3ee043afe88..b1363ecb47a 100644
--- a/src/mame/machine/mathbox.c
+++ b/src/mame/machine/mathbox.c
@@ -344,7 +344,6 @@ DEVICE_GET_INFO( mathbox )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(mathbox_state); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(mathbox);break;
diff --git a/src/mess/audio/mea8000.c b/src/mess/audio/mea8000.c
index 92b34d4fe6d..b0651ab8e66 100644
--- a/src/mess/audio/mea8000.c
+++ b/src/mess/audio/mea8000.c
@@ -707,7 +707,6 @@ DEVICE_GET_INFO( mea8000 ) {
switch ( state ) {
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(mea8000_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(mea8000); break;
diff --git a/src/mess/machine/990_tap.c b/src/mess/machine/990_tap.c
index 415cbf7eb95..1475b81b392 100644
--- a/src/mess/machine/990_tap.c
+++ b/src/mess/machine/990_tap.c
@@ -1071,7 +1071,6 @@ DEVICE_GET_INFO( tap_990 )
switch (state)
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(tap_990_t); break;
/* --- the following bits of info are returned as pointers --- */
diff --git a/src/mess/machine/applefdc.c b/src/mess/machine/applefdc.c
index 01719f1abac..97cfa0ec5fb 100644
--- a/src/mess/machine/applefdc.c
+++ b/src/mess/machine/applefdc.c
@@ -745,7 +745,6 @@ static DEVICE_GET_INFO(applefdc_base)
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(applefdc_token); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: /* Nothing */ break;
diff --git a/src/mess/machine/at45dbxx.c b/src/mess/machine/at45dbxx.c
index 23b38a9f92e..7a48078d06c 100644
--- a/src/mess/machine/at45dbxx.c
+++ b/src/mess/machine/at45dbxx.c
@@ -424,7 +424,6 @@ DEVICE_GET_INFO( at45db041 )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(at45dbxx_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(at45db041); break;
diff --git a/src/mess/machine/atarifdc.c b/src/mess/machine/atarifdc.c
index 2b1ebbde2c3..c44777e2634 100644
--- a/src/mess/machine/atarifdc.c
+++ b/src/mess/machine/atarifdc.c
@@ -821,7 +821,6 @@ DEVICE_GET_INFO( atari_fdc )
switch (state)
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(atari_fdc_t); break;
/* --- the following bits of info are returned as pointers --- */
diff --git a/src/mess/machine/ay31015.c b/src/mess/machine/ay31015.c
index 44afe230a3b..4542d195dcb 100644
--- a/src/mess/machine/ay31015.c
+++ b/src/mess/machine/ay31015.c
@@ -727,7 +727,6 @@ DEVICE_GET_INFO( ay31015 )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(ay31015_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(ay31015); break;
diff --git a/src/mess/machine/beta.c b/src/mess/machine/beta.c
index 784eaf2adb9..48b90c5a6ab 100644
--- a/src/mess/machine/beta.c
+++ b/src/mess/machine/beta.c
@@ -337,7 +337,6 @@ DEVICE_GET_INFO( beta_disk )
switch (state)
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(beta_disk_state); break;
/* --- the following bits of info are returned as pointers --- */
diff --git a/src/mess/machine/ds1315.c b/src/mess/machine/ds1315.c
index 4bdea7e9a88..5fd49f700ed 100644
--- a/src/mess/machine/ds1315.c
+++ b/src/mess/machine/ds1315.c
@@ -249,7 +249,6 @@ DEVICE_GET_INFO( ds1315 )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(ds1315_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(ds1315); break;
diff --git a/src/mess/machine/e05a03.c b/src/mess/machine/e05a03.c
index 83ae90941fd..3e394d83171 100644
--- a/src/mess/machine/e05a03.c
+++ b/src/mess/machine/e05a03.c
@@ -116,7 +116,6 @@ DEVICE_GET_INFO( e05a03 )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(e05a03_state); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(e05a03); break;
diff --git a/src/mess/machine/er59256.c b/src/mess/machine/er59256.c
index 040258f31af..379a4bd7543 100644
--- a/src/mess/machine/er59256.c
+++ b/src/mess/machine/er59256.c
@@ -233,7 +233,6 @@ DEVICE_GET_INFO( er59256 )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(er59256_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(er59256); break;
diff --git a/src/mess/machine/i8271.c b/src/mess/machine/i8271.c
index 7863fb79f48..18e5a98e5c3 100644
--- a/src/mess/machine/i8271.c
+++ b/src/mess/machine/i8271.c
@@ -1581,7 +1581,6 @@ DEVICE_GET_INFO( i8271 )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(i8271_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(i8271); break;
diff --git a/src/mess/machine/kr2376.c b/src/mess/machine/kr2376.c
index ac207f518c9..ac89987cbf9 100644
--- a/src/mess/machine/kr2376.c
+++ b/src/mess/machine/kr2376.c
@@ -378,7 +378,6 @@ DEVICE_GET_INFO( kr2376 )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(kr2376_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(kr2376); break;
diff --git a/src/mess/machine/mc68328.c b/src/mess/machine/mc68328.c
index 134f018a532..6f2e9550b21 100644
--- a/src/mess/machine/mc68328.c
+++ b/src/mess/machine/mc68328.c
@@ -2814,7 +2814,6 @@ DEVICE_GET_INFO( mc68328 )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(mc68328_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(mc68328); break;
diff --git a/src/mess/machine/mc6843.c b/src/mess/machine/mc6843.c
index 570f8307d47..ca16b31d8dc 100644
--- a/src/mess/machine/mc6843.c
+++ b/src/mess/machine/mc6843.c
@@ -836,7 +836,6 @@ DEVICE_GET_INFO( mc6843 ) {
switch ( state ) {
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(mc6843_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(mc6843); break;
diff --git a/src/mess/machine/mc6846.c b/src/mess/machine/mc6846.c
index 16f5fd12b0e..33cc21bf219 100644
--- a/src/mess/machine/mc6846.c
+++ b/src/mess/machine/mc6846.c
@@ -616,7 +616,6 @@ DEVICE_GET_INFO( mc6846 ) {
switch ( state ) {
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(mc6846_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(mc6846); break;
diff --git a/src/mess/machine/mc6854.c b/src/mess/machine/mc6854.c
index 6ba7660a81e..fcc62aaac1a 100644
--- a/src/mess/machine/mc6854.c
+++ b/src/mess/machine/mc6854.c
@@ -1046,7 +1046,6 @@ DEVICE_GET_INFO( mc6854 ) {
switch ( state ) {
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(mc6854_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(mc6854); break;
diff --git a/src/mess/machine/mm58274c.c b/src/mess/machine/mm58274c.c
index aa12c95fdbf..d7898544424 100644
--- a/src/mess/machine/mm58274c.c
+++ b/src/mess/machine/mm58274c.c
@@ -523,7 +523,6 @@ DEVICE_GET_INFO( mm58274c )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(mm58274c_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(mm58274c); break;
diff --git a/src/mess/machine/mos6530.c b/src/mess/machine/mos6530.c
index e8554a1d339..771f4f9b0e0 100644
--- a/src/mess/machine/mos6530.c
+++ b/src/mess/machine/mos6530.c
@@ -440,7 +440,6 @@ DEVICE_GET_INFO( mos6530 )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(mos6530_state); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(mos6530); break;
diff --git a/src/mess/machine/pc_lpt.c b/src/mess/machine/pc_lpt.c
index 2f227f3f8d0..97d56041526 100644
--- a/src/mess/machine/pc_lpt.c
+++ b/src/mess/machine/pc_lpt.c
@@ -121,7 +121,6 @@ DEVICE_GET_INFO( pc_lpt )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(pc_lpt_state); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers --- */
case DEVINFO_PTR_MACHINE_CONFIG: info->machine_config = MACHINE_CONFIG_NAME(pc_lpt); break;
diff --git a/src/mess/machine/pcf8593.c b/src/mess/machine/pcf8593.c
index 3f29b847538..388757561b0 100644
--- a/src/mess/machine/pcf8593.c
+++ b/src/mess/machine/pcf8593.c
@@ -455,7 +455,6 @@ DEVICE_GET_INFO( pcf8593 )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(pcf8593_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(pcf8593); break;
diff --git a/src/mess/machine/pf10.c b/src/mess/machine/pf10.c
index 68d6bd0dac3..646185b14db 100644
--- a/src/mess/machine/pf10.c
+++ b/src/mess/machine/pf10.c
@@ -107,7 +107,6 @@ DEVICE_GET_INFO( pf10 )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(pf10_state); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers --- */
case DEVINFO_PTR_MACHINE_CONFIG: info->machine_config = MACHINE_CONFIG_NAME(pf10); break;
diff --git a/src/mess/machine/s3c44b0.c b/src/mess/machine/s3c44b0.c
index 2bf609def85..0650458645f 100644
--- a/src/mess/machine/s3c44b0.c
+++ b/src/mess/machine/s3c44b0.c
@@ -2041,7 +2041,6 @@ DEVICE_GET_INFO( s3c44b0 )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(s3c44b0_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
// case DEVINFO_INT_CLASS: info->i = DEVICE_CLASS_PERIPHERAL; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(s3c44b0); break;
diff --git a/src/mess/machine/tf20.c b/src/mess/machine/tf20.c
index 846f31507a0..bbaa7f04f1a 100644
--- a/src/mess/machine/tf20.c
+++ b/src/mess/machine/tf20.c
@@ -364,7 +364,6 @@ DEVICE_GET_INFO( tf20 )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(tf20_state); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers --- */
case DEVINFO_PTR_MACHINE_CONFIG: info->machine_config = MACHINE_CONFIG_NAME(tf20); break;
diff --git a/src/mess/machine/upd7002.c b/src/mess/machine/upd7002.c
index 5b753ac9231..77c93f8de5c 100644
--- a/src/mess/machine/upd7002.c
+++ b/src/mess/machine/upd7002.c
@@ -215,7 +215,6 @@ DEVICE_GET_INFO( uPD7002 )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(uPD7002_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(uPD7002); break;
diff --git a/src/mess/machine/upd765.c b/src/mess/machine/upd765.c
index 8b1fc92f97f..48825ba27e8 100644
--- a/src/mess/machine/upd765.c
+++ b/src/mess/machine/upd765.c
@@ -2482,7 +2482,6 @@ DEVICE_GET_INFO( upd765a )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(upd765_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(upd765a); break;
diff --git a/src/mess/video/apollo.c b/src/mess/video/apollo.c
index 4caecf3cab5..65757433011 100644
--- a/src/mess/video/apollo.c
+++ b/src/mess/video/apollo.c
@@ -841,7 +841,6 @@ static DEVICE_RESET( apollo_mono15i ) {
DEVICE_GET_INFO( apollo_mono19i ) {
switch (state) {
/* --- the following bits of info are returned as 64-bit signed integers --- */
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(screen_data_t); break;
/* --- the following bits of info are returned as pointers to data or functions --- */
@@ -861,7 +860,6 @@ DEVICE_GET_INFO( apollo_mono19i ) {
DEVICE_GET_INFO( apollo_mono15i ) {
switch (state) {
/* --- the following bits of info are returned as 64-bit signed integers --- */
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(screen_data_t); break;
/* --- the following bits of info are returned as pointers to data or functions --- */
diff --git a/src/mess/video/k1ge.c b/src/mess/video/k1ge.c
index d06bec73bd8..eacdfec879c 100644
--- a/src/mess/video/k1ge.c
+++ b/src/mess/video/k1ge.c
@@ -898,7 +898,6 @@ DEVICE_GET_INFO( k1ge )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof( k1ge_t ); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME( k1ge ); break;
diff --git a/src/mess/video/vtvideo.c b/src/mess/video/vtvideo.c
index 2316fbc8637..e004d3b0929 100644
--- a/src/mess/video/vtvideo.c
+++ b/src/mess/video/vtvideo.c
@@ -458,7 +458,6 @@ DEVICE_GET_INFO( vt100_video )
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
case DEVINFO_INT_TOKEN_BYTES: info->i = sizeof(vt_video_t); break;
- case DEVINFO_INT_INLINE_CONFIG_BYTES: info->i = 0; break;
/* --- the following bits of info are returned as pointers to data or functions --- */
case DEVINFO_FCT_START: info->start = DEVICE_START_NAME(vt_video); break;