static uint32_t smc91c111_readw(void *opaque, hwaddr offset) { uint32_t val; val = smc91c111_readb(opaque, offset); val |= smc91c111_readb(opaque, offset + 1) << 8; return val; }
static uint32_t smc91c111_readw(void *opaque, target_phys_addr_t offset) { uint32_t val; val = smc91c111_readb(opaque, offset); val |= smc91c111_readb(opaque, offset + 1) << 8; return val; }