~ubuntu-branches/ubuntu/saucy/sane-backends/saucy

« back to all changes in this revision

Viewing changes to backend/lexmark_models.c

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2011-02-14 14:28:56 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110214142856-6gxjetg88q9zctid
Tags: 1.0.22-0ubuntu1
* New upstream release
* debian/control:
  - Use standards version 3.9.1
* debian/patches/allow_dll.d_symlinks.patch:
* debian/patches/fix_epson2_cancel.patch:
* debian/patches/fix_epson2_commands.patch:
* debian/patches/fix_xerox_mfp_color_mode.patch:
* debian/patches/genesys_disable_raw_data_log.patch:
* debian/patches/no_translations.patch:
* debian/patches/saned_exit_avahi_process.patch:
* debian/patches/scsi_perfection_2450.patch:
* debian/patches/scsi_scanjet_4c.patch:
* debian/patches/xerox_mfp_new_ids.patch:
  - Applied upstream
* debian/watch:
  - Dropped, the URL is not consistent between releases

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* sane - Scanner Access Now Easy.
2
2
 
3
 
   Copyright (C) 2006-2007 St�phane Voltz <stef.dev@free.fr>
 
3
   Copyright (C) 2006-2010 St�phane Voltz <stef.dev@free.fr>
 
4
   Copyright (C) 2010 "Torsten Houwaart" <ToHo@gmx.de> X74 support
4
5
 
5
6
   This file is part of the SANE package.
6
7
 
49
50
   "Lexmark X1100",             /* name */
50
51
   "Lexmark",                   /* vendor */
51
52
   "X1100/rev. B2",             /* model */
52
 
   X1100_MOTOR,                 /* X1100 series has 2 sensors */
53
 
   X1100_B2_SENSOR},
 
53
   /* X1100 series has 2 sensors */
 
54
   X1100_B2_SENSOR,
 
55
   1235,                        /* first x-coordinate of Home Point */
 
56
   1258},                       /* second x-coordinate of Home Point */
54
57
  {
55
58
   0x043d,                      /* vendor id */
56
59
   0x007c,                      /* product id */
60
63
   "X1100/rev. 2C",             /* model */
61
64
   A920_MOTOR,                  /* X1100 series has 2 sensors, 2C or B2. It
62
65
                                   is detected at sane_open() */
63
 
   X1100_2C_SENSOR},
 
66
   X1100_2C_SENSOR,
 
67
   1235,                        /* first x-coordinate of Home Point */
 
68
   1258},                       /* second x-coordinate of Home Point */
64
69
  {
65
70
   0x413c,                      /* vendor id */
66
71
   0x5105,                      /* product id */
69
74
   "Dell",                      /* vendor */
70
75
   "A920",                      /* model */
71
76
   A920_MOTOR,
72
 
   A920_SENSOR},
 
77
   A920_SENSOR,
 
78
   1235,                        /* first x-coordinate of Home Point */
 
79
   1258},                       /* second x-coordinate of Home Point */
73
80
  {
74
81
   0x043d,                      /* vendor id */
75
82
   0x007d,                      /* product id */
78
85
   "Lexmark",                   /* vendor */
79
86
   "X1200/USB1.1",              /* model */
80
87
   A920_MOTOR,
81
 
   X1200_SENSOR},
 
88
   X1200_SENSOR,
 
89
   1235,                        /* first x-coordinate of Home Point */
 
90
   1258},                       /* second x-coordinate of Home Point */
82
91
  {
83
92
   0x043d,                      /* vendor id */
84
93
   0x007d,                      /* product id */
87
96
   "Lexmark",                   /* vendor */
88
97
   "X1200/USB2.0",              /* model */
89
98
   A920_MOTOR,
90
 
   X1200_USB2_SENSOR},
 
99
   X1200_USB2_SENSOR,
 
100
   1235,                        /* first x-coordinate of Home Point */
 
101
   1258},                       /* second x-coordinate of Home Point */
 
102
  {
 
103
   0x043d,                      /* vendor id */
 
104
   0x0060,                      /* product id */
 
105
   0x00,                        /* submodel id */
 
106
   "Lexmark X74",               /* name */
 
107
   "Lexmark",                   /* vendor */
 
108
   "X74",                       /* model */
 
109
   X74_MOTOR,
 
110
   X74_SENSOR,
 
111
   1222,                        /* first x-coordinate of Home Point */
 
112
   1322},                       /* second x-coordinate of Home Point */
91
113
  {                             /* termination model, must be last */
92
 
   0, 0, 0, NULL, NULL, NULL, 0, 0}
 
114
   0, 0, 0, NULL, NULL, NULL, 0, 0, 0, 0}
93
115
};                              /* end models description */