diff options
Diffstat (limited to 'backend/hp-option.c')
-rw-r--r-- | backend/hp-option.c | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/backend/hp-option.c b/backend/hp-option.c index ba799b7..f4d23f8 100644 --- a/backend/hp-option.c +++ b/backend/hp-option.c @@ -851,16 +851,19 @@ _probe_resolution (_HpOption this, HpScsi scsi, HpOptSet __sane_unused__ optset, if ( (sanei_hp_device_probe (&compat, scsi) == SANE_STATUS_GOOD) && (compat & HP_COMPAT_PS) ) - {int val, mi, ma; + { + int val, mi, ma; - if ( (sanei_hp_scl_inquire(scsi, SCL_MEDIA, &val, &mi, &ma) + if ( (sanei_hp_scl_inquire(scsi, SCL_MEDIA, &val, &mi, &ma) == SANE_STATUS_GOOD) - && ((val == HP_MEDIA_SLIDE) || (val == HP_MEDIA_NEGATIVE)) ) - quant = 300; - minval = (minval+quant-1)/quant; - minval *= quant; - maxval = (maxval+quant-1)/quant; - maxval *= quant; + && ((val == HP_MEDIA_SLIDE) || (val == HP_MEDIA_NEGATIVE)) ) + { + quant = 300; + minval = (minval+quant-1)/quant; + minval *= quant; + maxval = (maxval+quant-1)/quant; + maxval *= quant; + } } DBG(5, "_probe_resolution: set range %d..%d, quant=%d\n",minval,maxval,quant); @@ -2431,7 +2434,7 @@ _program_scan_type (HpOption this, HpScsi scsi, HpOptSet optset, HpData data) sanei_hp_scl_set(scsi, SCL_TONE_MAP, -1); /* Select tone map */ } } - + return SANE_STATUS_GOOD; } |