ea08382232
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/sane-backends.git#5e1654525bab42992611152888db56677685c789
37 lines
1.4 KiB
Diff
37 lines
1.4 KiB
Diff
diff --git a/backend/epson2-ops.c b/backend/epson2-ops.c
|
|
index 83a0169..573ebcf 100644
|
|
--- a/backend/epson2-ops.c
|
|
+++ b/backend/epson2-ops.c
|
|
@@ -291,14 +291,14 @@ e2_dev_post_init(struct Epson_Device *dev)
|
|
dev->need_reset_on_source_change = SANE_FALSE;
|
|
|
|
if (e2_dev_model(dev, "ES-9000H") || e2_dev_model(dev, "GT-30000")) {
|
|
- dev->cmd->set_focus_position = 0;
|
|
dev->cmd->feed = 0x19;
|
|
+ dev->focusSupport = SANE_FALSE;
|
|
}
|
|
|
|
if (e2_dev_model(dev, "GT-8200") || e2_dev_model(dev, "Perfection1650")
|
|
|| e2_dev_model(dev, "Perfection1640") || e2_dev_model(dev, "GT-8700")) {
|
|
dev->cmd->feed = 0;
|
|
- dev->cmd->set_focus_position = 0;
|
|
+ dev->focusSupport = SANE_FALSE;
|
|
dev->need_reset_on_source_change = SANE_TRUE;
|
|
}
|
|
|
|
@@ -825,12 +825,12 @@ e2_discover_capabilities(Epson_Scanner *s)
|
|
|
|
if (esci_request_focus_position(s, &s->currentFocusPosition) ==
|
|
SANE_STATUS_GOOD) {
|
|
- DBG(1, "setting focus is supported, current focus: %u\n", s->currentFocusPosition);
|
|
+ DBG(1, "getting focus is supported, current focus: %u\n", s->currentFocusPosition);
|
|
dev->focusSupport = SANE_TRUE;
|
|
s->opt[OPT_FOCUS_POS].cap &= ~SANE_CAP_INACTIVE;
|
|
s->val[OPT_FOCUS_POS].w = s->currentFocusPosition;
|
|
} else {
|
|
- DBG(1, "setting focus is not supported\n");
|
|
+ DBG(1, "getting focus is not supported\n");
|
|
dev->focusSupport = SANE_FALSE;
|
|
s->opt[OPT_FOCUS_POS].cap |= SANE_CAP_INACTIVE;
|
|
s->val[OPT_FOCUS_POS].w = FOCUS_ON_GLASS; /* just in case */
|