* Reset BCH here, too. We got failures otherwise :(
         * See later BCH reset for explanation of MX23 and MX28 handling
         */
-       ret = gpmi_reset_block(r->bch_regs,
-                              GPMI_IS_MX23(this) || GPMI_IS_MX28(this));
+       ret = gpmi_reset_block(r->bch_regs, GPMI_IS_MXS(this));
        if (ret)
                goto err_out;
 
        * chip, otherwise it will lock up. So we skip resetting BCH on the MX23.
        * and MX28.
        */
-       ret = gpmi_reset_block(r->bch_regs,
-                              GPMI_IS_MX23(this) || GPMI_IS_MX28(this));
+       ret = gpmi_reset_block(r->bch_regs, GPMI_IS_MXS(this));
        if (ret)
                goto err_out;
 
 
        struct bch_geometry *geo = &this->bch_geometry;
 
        /* Do the sanity check. */
-       if (GPMI_IS_MX23(this) || GPMI_IS_MX28(this)) {
+       if (GPMI_IS_MXS(this)) {
                /* The mx23/mx28 only support the GF13. */
                if (geo->gf_len == 14)
                        return false;