From 97cd2e10bb6149cbdaab8fc306ea2761aa83f972 Mon Sep 17 00:00:00 2001 From: Rolf Bensch Date: Tue, 22 Oct 2019 17:46:01 +0200 Subject: [PATCH] pixma_mp750: all scanners have ccd --- backend/pixma_mp750.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/backend/pixma_mp750.c b/backend/pixma_mp750.c index 5bd6ef0a6..db6c1aa4c 100644 --- a/backend/pixma_mp750.c +++ b/backend/pixma_mp750.c @@ -959,12 +959,13 @@ static const pixma_scan_ops_t pixma_mp750_ops = { 0, 0, /* adftpu_min_dpi & adftpu_max_dpi not used in this subdriver */ \ 0, 0, /* tpuir_min_dpi & tpuir_max_dpi not used in this subdriver */ \ 637, 877, /* width, height */ \ - PIXMA_CAP_GRAY|PIXMA_CAP_EVENTS|cap \ + PIXMA_CAP_CCD| /* all scanners with CCD */ \ + PIXMA_CAP_GRAY|PIXMA_CAP_EVENTS|cap \ } const pixma_config_t pixma_mp750_devices[] = { - DEVICE ("Canon PIXMA MP750", "MP750", MP750_PID, 2400, PIXMA_CAP_CCD | PIXMA_CAP_ADF), - DEVICE ("Canon PIXMA MP760/770", "MP760/770", MP760_PID, 2400, PIXMA_CAP_CCD | PIXMA_CAP_TPU), - DEVICE ("Canon PIXMA MP780/790", "MP780/790", MP780_PID, 2400, PIXMA_CAP_CCD | PIXMA_CAP_ADF), + DEVICE ("Canon PIXMA MP750", "MP750", MP750_PID, 2400, PIXMA_CAP_ADF), + DEVICE ("Canon PIXMA MP760/770", "MP760/770", MP760_PID, 2400, PIXMA_CAP_TPU), + DEVICE ("Canon PIXMA MP780/790", "MP780/790", MP780_PID, 2400, PIXMA_CAP_ADF), DEVICE (NULL, NULL, 0, 0, 0) };