ret = of_property_read_u32(np, "cirrus,btn-det-init-dbnce", &val);
 
        if (!ret) {
-               if ((val >= CS42L42_BTN_DET_INIT_DBNCE_MIN) &&
-                       (val <= CS42L42_BTN_DET_INIT_DBNCE_MAX))
+               if (val <= CS42L42_BTN_DET_INIT_DBNCE_MAX)
                        cs42l42->btn_det_init_dbnce = val;
                else {
                        dev_err(&i2c_client->dev,
        ret = of_property_read_u32(np, "cirrus,btn-det-event-dbnce", &val);
 
        if (!ret) {
-               if ((val >= CS42L42_BTN_DET_EVENT_DBNCE_MIN) &&
-                       (val <= CS42L42_BTN_DET_EVENT_DBNCE_MAX))
+               if (val <= CS42L42_BTN_DET_EVENT_DBNCE_MAX)
                        cs42l42->btn_det_event_dbnce = val;
                else {
                        dev_err(&i2c_client->dev,
 
        if (!ret) {
                for (i = 0; i < CS42L42_NUM_BIASES; i++) {
-                       if ((thresholds[i] >= CS42L42_HS_DET_LEVEL_MIN) &&
-                               (thresholds[i] <= CS42L42_HS_DET_LEVEL_MAX))
+                       if (thresholds[i] <= CS42L42_HS_DET_LEVEL_MAX)
                                cs42l42->bias_thresholds[i] = thresholds[i];
                        else {
                                dev_err(&i2c_client->dev,