summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/pc_kbd/pc_kbdc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/pc_kbd/pc_kbdc.cpp')
-rw-r--r--src/devices/bus/pc_kbd/pc_kbdc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/pc_kbd/pc_kbdc.cpp b/src/devices/bus/pc_kbd/pc_kbdc.cpp
index d5768d633f4..fd87cca47fc 100644
--- a/src/devices/bus/pc_kbd/pc_kbdc.cpp
+++ b/src/devices/bus/pc_kbd/pc_kbdc.cpp
@@ -21,7 +21,7 @@ The following basic program can be useful for identifying scancodes:
// GLOBAL VARIABLES
//**************************************************************************
-const device_type PC_KBDC_SLOT = &device_creator<pc_kbdc_slot_device>;
+const device_type PC_KBDC_SLOT = device_creator<pc_kbdc_slot_device>;
//**************************************************************************
// LIVE DEVICE
@@ -63,7 +63,7 @@ void pc_kbdc_slot_device::device_start()
// GLOBAL VARIABLES
//**************************************************************************
-const device_type PC_KBDC = &device_creator<pc_kbdc_device>;
+const device_type PC_KBDC = device_creator<pc_kbdc_device>;
//-------------------------------------------------