diff options
author | 2021-02-20 02:18:27 +0000 | |
---|---|---|
committer | 2021-02-20 02:18:27 +0000 | |
commit | 160083d812527070b57ea92d3ab0db23685b8ec2 (patch) | |
tree | 46d69cc80d205ede9a81d51f59d56bdd3ed66dd3 | |
parent | 503941bf1e30c1352df5703b39f9f44116ef5a89 (diff) |
i2cmem.cpp: Fix duplicate shortname.
-rw-r--r-- | src/devices/machine/i2cmem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/i2cmem.cpp b/src/devices/machine/i2cmem.cpp index 3abfa4157f9..aba7996c90a 100644 --- a/src/devices/machine/i2cmem.cpp +++ b/src/devices/machine/i2cmem.cpp @@ -61,7 +61,7 @@ static inline void ATTR_PRINTF( 3, 4 ) verboselog( device_t *device, int n_level // device type definition DEFINE_DEVICE_TYPE(I2C_24C01, i2c_24c01_device, "24c01", "24C01 I2C Memory") -DEFINE_DEVICE_TYPE(I2C_PCF8570, i2c_pcf8570_device, "pcf8582", "PCF8570 I2C Memory") +DEFINE_DEVICE_TYPE(I2C_PCF8570, i2c_pcf8570_device, "pcf8570", "PCF8570 I2C Memory") DEFINE_DEVICE_TYPE(I2C_PCD8572, i2c_pcd8572_device, "pcd8572", "PCD8572 I2C Memory") DEFINE_DEVICE_TYPE(I2C_PCF8582, i2c_pcf8582_device, "pcf8582", "PCF8582 I2C Memory") DEFINE_DEVICE_TYPE(I2C_24C02, i2c_24c02_device, "24c02", "24C02 I2C Memory") |