},
 };
 
+static const unsigned int wcd9335_config_regs[] = {
+       WCD9335_INTR_LEVEL0,
+};
+
 static const struct regmap_irq_chip wcd9335_regmap_irq1_chip = {
        .name = "wcd9335_pin1_irq",
        .status_base = WCD9335_INTR_PIN1_STATUS0,
        .mask_base = WCD9335_INTR_PIN1_MASK0,
        .ack_base = WCD9335_INTR_PIN1_CLEAR0,
-       .type_base = WCD9335_INTR_LEVEL0,
-       .num_type_reg = 4,
        .num_regs = 4,
        .irqs = wcd9335_codec_irqs,
        .num_irqs = ARRAY_SIZE(wcd9335_codec_irqs),
+       .config_base = wcd9335_config_regs,
+       .num_config_bases = ARRAY_SIZE(wcd9335_config_regs),
+       .num_config_regs = 4,
+       .set_type_config = regmap_irq_set_type_config_simple,
 };
 
 static int wcd9335_parse_dt(struct wcd9335_codec *wcd)