fixed usb checksums for MF4100

merge-requests/1/head
Rolf Bensch 2013-01-24 12:07:34 +01:00
rodzic 97b4fb62e5
commit d87619e71f
2 zmienionych plików z 6 dodań i 5 usunięć

Wyświetl plik

@ -1,7 +1,8 @@
2013-01-21 Rolf Bensch <rolf at bensch hyphen online dot de>
2013-01-24 Rolf Bensch <rolf at bensch hyphen online dot de>
* backend/pixma_mp150.c: fixed 1200 dpi scan for Canon Pixma MG2100.
* backend/pixma_mp150.c, doc/descriptions/pixma.desc, doc/sane-pixma.man:
Canon Pixma MG2100 support reported by David Durgee.
* backend/pixma_imageclass.c: fixed usb checksums for MF4100.
2013-01-19 Paul Newall <quandry@ntlworld.com>
* backends/kodakaio.c:

Wyświetl plik

@ -191,9 +191,9 @@ activate (pixma_t * s, uint8_t x)
case D480_PID:
case D420_PID:
case MF4360_PID:
case MF4100_PID:
return iclass_exec (s, &mf->cb, 1);
break;
case MF4100_PID:
default:
return pixma_exec (s, &mf->cb);
}
@ -222,9 +222,9 @@ select_source (pixma_t * s)
case D480_PID:
case D420_PID:
case MF4360_PID:
case MF4100_PID:
return iclass_exec (s, &mf->cb, 0);
break;
case MF4100_PID:
default:
return pixma_exec (s, &mf->cb);
}
@ -256,9 +256,9 @@ send_scan_param (pixma_t * s)
case D480_PID:
case D420_PID:
case MF4360_PID:
case MF4100_PID:
return iclass_exec (s, &mf->cb, 0);
break;
case MF4100_PID:
default:
return pixma_exec (s, &mf->cb);
}
@ -353,9 +353,9 @@ read_error_info (pixma_t * s, void *buf, unsigned size)
case D480_PID:
case D420_PID:
case MF4360_PID:
case MF4100_PID:
error = iclass_exec (s, &mf->cb, 0);
break;
case MF4100_PID:
default:
error = pixma_exec (s, &mf->cb);
}