s2245: Rename an option flag for the print command

(No funtional change)
This commit is contained in:
Solomon Peachy 2021-08-11 20:00:45 -04:00
parent 364808f4a9
commit 43e46b616d
2 changed files with 2 additions and 2 deletions

View File

@ -1768,7 +1768,7 @@ top:
print.media = 0; /* ignore job->jp.media! */
print.ipp = SINFONIA_PRINT28_IPP_CONTOUR; // XXX make configurable?
print.method = cpu_to_le32(job->jp.method | SINFONIA_PRINT28_METHOD_ERR_RECOVERY | SINFONIA_PRINT28_METHOD_ERR_PREHEAT);
print.method = cpu_to_le32(job->jp.method | SINFONIA_PRINT28_METHOD_ERR_RECOVERY | SINFONIA_PRINT28_METHOD_PREHEAT);
if ((ret = sinfonia_docmd(&ctx->dev,
(uint8_t*)&print, sizeof(print),

View File

@ -580,7 +580,7 @@ struct sinfonia_printcmd28_hdr {
#define SINFONIA_PRINT28_METHOD_PRINT_4SPLIT 0x05
#define SINFONIA_PRINT28_METHOD_ERR_RECOVERY 0x08
#define SINFONIA_PRINT28_METHOD_ERR_PREHEAT 0x10
#define SINFONIA_PRINT28_METHOD_PREHEAT 0x10
#define SINFONIA_PRINT28_IPP_RESP 0x01
#define SINFONIA_PRINT28_IPP_CONTOUR 0x02