struct mcp4725_chip_info {
        const struct iio_chan_spec *chan_spec;
        unsigned int chip_id;
+       bool use_ext_ref_voltage;
 };
 
 struct mcp4725_data {
                pdata = &pdata_dt;
        }
 
-       if (info->chip_id == MCP4725 && pdata->use_vref) {
+       if (info->use_ext_ref_voltage && pdata->use_vref) {
                dev_err(&client->dev,
                        "external reference is unavailable on MCP4725");
                return -EINVAL;
        data->powerdown = pd > 0;
        data->powerdown_mode = pd ? pd - 1 : 2; /* largest resistor to gnd */
        data->dac_value = (inbuf[1] << 4) | (inbuf[2] >> 4);
-       if (info->chip_id == MCP4726)
+       if (!info->use_ext_ref_voltage)
                ref = (inbuf[3] >> 3) & 0x3;
 
-       if (info->chip_id == MCP4726 && ref != data->ref_mode) {
+       if (!info->use_ext_ref_voltage && ref != data->ref_mode) {
                dev_info(&client->dev,
                        "voltage reference mode differs (conf: %u, eeprom: %u), setting %u",
                        data->ref_mode, ref, data->ref_mode);
 static const struct mcp4725_chip_info mcp4725 = {
        .chan_spec = &mcp472x_channel[MCP4725],
        .chip_id = MCP4725,
+       .use_ext_ref_voltage = true,
 };
 
 static const struct mcp4725_chip_info mcp4726 = {