ChangeLog 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583
  1. 2001-10-11 Tim Waugh <twaugh@redhat.com>
  2. * parport_pc.c, parport_serial.c: Support for NetMos cards.
  3. + Patch originally from Michael Reinelt <reinelt@eunet.at>.
  4. 2002-04-25 Tim Waugh <twaugh@redhat.com>
  5. * parport_serial.c, parport_pc.c: Move some SIIG cards around.
  6. Patch from Andrey Panin.
  7. 2002-01-20 Tim Waugh <twaugh@redhat.com>
  8. * parport_pc.c (parport_pc_compat_write_block_pio,
  9. parport_pc_ecp_write_block_pio, parport_pc_ecp_read_block_pio):
  10. Use the default implementations if the caller wants to use
  11. O_NONBLOCK.
  12. 2002-02-25 Tim Waugh <twaugh@redhat.com>
  13. * parport_pc.c: Make sure that priv->ctr_writable includes IntEn
  14. even if IRQ is given as a parameter.
  15. 2002-01-21 Tim Waugh <twaugh@redhat.com>
  16. * daisy.c: Apply patch from Max Vorobiev to make parport_daisy_select
  17. work for ECP/EPP modes.
  18. 2002-01-13 Niels Kristian Bech Jensen <nkbj@image.dk>
  19. * parport_pc.c: Change some occurrences of frob_set_mode to
  20. ECR_WRITE. This fixes PLIP.
  21. 2002-01-04 Tim Waugh <twaugh@redhat.com>
  22. * share.c (parport_claim_or_block): Sleep interruptibly to prevent
  23. a possible deadlock.
  24. 2001-12-07 Damian Gruszka <damian.gruszka@VisionSystems.de>
  25. * parport_pc.c (ECR_WRITE): Define. If there are forbidden bits
  26. in the ECR register for some chips, this will be a useful place to
  27. put that knowledge.
  28. (change_mode): Use ECR_WRITE.
  29. (parport_pc_restore_state): Likewise.
  30. (parport_ECPPS2_supported): Likewise.
  31. (parport_ECPEPP_supported): Likewise.
  32. (irq_probe_EPP): Likewise.
  33. (programmable_irq_support): Likewise.
  34. (programmable_dma_support): Likewise.
  35. (parport_pc_probe_port): Likewise.
  36. (frob_set_mode): New function. Set the mode bits of the ECR.
  37. (get_fifo_residue): Use frob_set_mode.
  38. (parport_pc_ecpepp_read_data): Likewise.
  39. (parport_pc_ecpepp_write_data): Likewise.
  40. (parport_pc_ecpepp_read_addr): Likewise.
  41. (parport_pc_ecpepp_write_addr): Likewise.
  42. (parport_pc_compat_write_block_pio): Likewise.
  43. (parport_pc_ecp_write_block_pio): Likewise.
  44. (parport_ECR_present): Likewise.
  45. (parport_ECP_supported): Likewise.
  46. (parport_EPP_supported): Likewise.
  47. (parport_ECPEPP_supported): Likewise.
  48. (programmable_irq_support): Likewise.
  49. (irq_probe_ECP): Likewise.
  50. (programmable_dma_support): Likewise.
  51. (parport_pc_enable_irq): Only enable interrupts if we know which
  52. IRQ line they will come from.
  53. (parport_pc_init_state): Set nErrIntrEn at initialisation.
  54. (parport_pc_restore_state): Only write writable bits of CTR.
  55. (parport_irq_probe): If no IRQ is found, take ackIntEn out of the
  56. writable bit set.
  57. 2001-12-07 Tim Waugh <twaugh@redhat.com>
  58. * parport_pc.c (parport_pc_fifo_write_block_pio): Correct typo.
  59. (parport_pc_init_state): Only set ackIntEn if we know which IRQ
  60. line the interrupts will come from.
  61. 2001-12-07 Tim Waugh <twaugh@redhat.com>
  62. * ieee1284_ops.c (parport_ieee1284_epp_write_addr,
  63. parport_ieee1284_epp_read_addr): Actually do something useful.
  64. 2001-12-07 Tim Waugh <twaugh@redhat.com>
  65. * parport_pc.c (dmaval): Don't use DMA by default. It seems to be
  66. too buggy at the moment. Use 'dma=auto' to restore the previous
  67. behaviour.
  68. 2001-12-07 Tim Waugh <twaugh@redhat.com>
  69. * daisy.c (DEBUG): Undefine.
  70. 2001-12-06 Tim Waugh <twaugh@redhat.com>
  71. * ieee1284_ops.c (parport_ieee1284_ecp_read_data): Mask off
  72. PARPORT_CONTROL_AUTOFD as well. Bug spotted by Joe
  73. <joeja@mindspring.com>.
  74. 2001-12-03 Rich Liu <Rich.Liu@ite.com.tw>
  75. * parport_pc.c (sio_ite_8872_probe): ITE8873 is a single-port
  76. serial board, not a serial+parallel.
  77. 2001-11-30 Niels Kristian Bech Jensen <nkbj@image.dk>
  78. * parport_pc.c: Fix compiler warning.
  79. 2001-11-14 Tim Waugh <twaugh@redhat.com>
  80. * parport_pc.c (parport_pc_pci_probe): Hooks for PCI cards before
  81. and after probing for ports.
  82. * parport_serial.c (parport_register): Likewise.
  83. 2001-11-12 Tim Waugh <twaugh@redhat.com>
  84. * parport_pc.c (init_module): Warn when parameters are ignored.
  85. 2001-11-01 Damian Gruszka <damian.gruszka@VisionSystems.de>
  86. * parport_serial.c (serial_register): Set base_baud before
  87. calling register_serial.
  88. 2001-10-26 Tim Waugh <twaugh@redhat.com>
  89. * parport_pc.c (parport_irq_probe): When ECR programmable IRQ
  90. support fails, generate interrupts using the FIFO even if we don't
  91. want to use the FIFO for real data transfers.
  92. (parport_pc_probe_port): Display the ECR address if we have an
  93. ECR, not just if we will use the FIFO.
  94. 2001-10-24 Dave Strauss <D.Strauss@motorola.com>
  95. * parport_pc.c (parport_pc_compat_write_block_pio,
  96. parport_pc_ecp_write_block_pio): Allow a few seconds for an ECP
  97. transfer to finish up.
  98. 2001-10-11 Tim Waugh <twaugh@redhat.com>
  99. * parport_pc (sio_ite_8872_probe): New function, submitted by Rich
  100. Liu from ITE. Cleaned up, removed bogus phys_to_virt calls.
  101. 2001-10-24 Tim Waugh <twaugh@redhat.com>
  102. * parport_pc.c: Support for AKS AladdinCARD. Patch from
  103. Aladdin Knowledge Systems (Christian Groessler).
  104. 2001-10-24 Tim Waugh <twaugh@redhat.com>
  105. * ieee1284_ops.c (parport_ieee1284_ecp_read_data): Try to minimise
  106. turnaround time.
  107. * ieee1284.c (parport_poll_peripheral): Try a couple of times
  108. first without delaying.
  109. 2001-10-10 Tim Waugh <twaugh@redhat.com>
  110. * parport_pc.c: Support for OX16PCI954 PCI card.
  111. 2001-10-10 Tim Waugh <twaugh@redhat.com>
  112. * parport_pc.c: Support for OX12PCI840 PCI card (reported by
  113. mk@daveg.com). Lock-ups diagnosed by Ronnie Arosa (and now we
  114. just don't trust its ECR).
  115. 2001-10-10 Gunther Mayer <gunther.mayer@braunschweig.okersurf.de>
  116. * parport_pc.c: Support for AVLAB cards.
  117. 2001-10-10 Tim Waugh <twaugh@redhat.com>
  118. * ieee1284_ops.c (ecp_forward_to_reverse, ecp_reverse_to_forward):
  119. Remember to retry direction switch if it fails. Patch from David
  120. Lambert.
  121. 2001-10-08 David C. Hansen <haveblue@us.ibm.com>
  122. * share.c: Make driverlist_lock and parportlist_lock static.
  123. 2001-10-08 Philip Blundell <philb@gnu.org>
  124. * parport_pc.c: New modular parameter verbose_logging.
  125. Make port->modes indicate the modes that we are prepared to use,
  126. rather than the modes that are available.
  127. 2001-10-07 Tim Waugh <twaugh@redhat.com>
  128. * parport_pc.c (parport_pc_probe_port): Fix memory leak spotted by
  129. Kipp Cannon.
  130. 2001-10-07 Tim Waugh <twaugh@redhat.com>
  131. * parport_serial.c: Remove NetMos support, since it causes problems
  132. for some people.
  133. 2001-08-30 Tim Waugh <twaugh@redhat.com>
  134. * parport_serial.c (parport_serial_pci_probe): Clean-up on partial
  135. registration failure.
  136. 2001-08-14 Tim Waugh <twaugh@redhat.com>
  137. * parport_pc.c (parport_pc_init_superio): Allow for more than one
  138. SuperIO device. Patch from Rich Lio (ITE).
  139. 2001-08-11 Tim Waugh <twaugh@redhat.com>
  140. * parport_pc.c: Support for Titan Electronics cards.
  141. 2001-08-08 Tim Waugh <twaugh@redhat.com>
  142. * share.c (parport_unregister_device): Remove device from wait list
  143. too.
  144. 2001-06-20 Tim Waugh <twaugh@redhat.com>
  145. * parport_pc.c: Make 'io_hi=0' work.
  146. 2001-05-31 Tim Waugh <twaugh@redhat.com>
  147. * parport_serial.c: New file.
  148. 2001-06-05 Tim Waugh <twaugh@redhat.com>
  149. * parport_pc.c (parport_pc_unregister_port): New exported function.
  150. Do the opposite of parport_pc_probe_port.
  151. (cleanup_module): Use it.
  152. 2001-05-22 Juan Quintela <quintela@mandrakesoft.com>
  153. * parport_amiga.c: Set printk levels.
  154. * parport_gsc.c: Likewise.
  155. * parport_mfc3.c: Likewise.
  156. * parport_pc.c: Likewise.
  157. * parport_sunbpp.c: Likewise.
  158. * probe.c: Likewise.
  159. * share.c: Likewise.
  160. 2001-05-10 Fred Barnes <frmb2@ukc.ac.uk>
  161. * parport_pc.c (parport_pc_epp_read_data): added support for
  162. reading from a w91284pic peripheral, flag is PARPORT_W91284PIC.
  163. 2001-05-07 Fred Barnes <frmb2@ukc.ac.uk>
  164. * parport_pc.c (parport_pc_epp_read_data,
  165. parport_pc_epp_write_data, parport_pc_epp_read_addr,
  166. parport_pc_epp_write_addr): support for fast reads/writes using
  167. the PARPORT_EPP_FAST flag.
  168. * ieee1284.c (parport_read, parport_write): added code to handle
  169. software EPP mode (IEEE1284_MODE_EPPSWE). Added code to allow
  170. BYTE mode reverse transfers (previously always went for NIBBLE
  171. mode).
  172. * ieee1284_ops.c (parport_ieee1284_epp_read_data,
  173. parport_ieee1284_epp_write_data): fixed various polarity problems.
  174. Also (theoretically) fixed address versions (.._addr), but no
  175. hardware to test this on.
  176. * parport_pc.h: added parport_dump_state() function for debugging.
  177. Needs to have DEBUG_PARPORT to be defined for it to be included.
  178. 2001-05-03 Tim Waugh <twaugh@redhat.com>
  179. * parport_pc.c: Fix the compile problem I introduce from the last
  180. change.
  181. 2001-04-20 Paul Gortmaker <p_gortmaker@yahoo.com>
  182. * parport_pc.c: Cut down the size quite a bit (more than 4k off
  183. the object, about 1k off the zImage) for the older non-PCI
  184. machines which are typically resource starved anyway...
  185. 2001-03-26 R Horn <rjh@world.std.com>
  186. * parport_pc.c: Some commentary changes.
  187. 2001-04-19 Tim Waugh <twaugh@redhat.com>
  188. * parport_pc.c (parport_pc_probe_port): Remove __devinit
  189. attribute. Export unconditionally.
  190. 2001-04-14 Jeff Garzik <jgarzik@pobox.com>
  191. Merged: 2001-03-30 Tim Waugh <twaugh@redhat.com>
  192. * drivers/parport/parport_pc.c: Make Via SuperIO chipsets behave
  193. like everything else with respect to irq= and dma= parameters.
  194. 2001-04-08 Tim Waugh <twaugh@redhat.com>
  195. * parport_pc.c (parport_pc_save_state): Read from the soft copy of
  196. the control port.
  197. (parport_pc_restore_state): Update the soft copy of the control
  198. port.
  199. 2001-03-26 Tim Waugh <twaugh@redhat.com>
  200. * share.c (parport_find_number, parport_find_base): Trigger
  201. a lowlevel driver load if there are no ports yet.
  202. 2001-03-26 Tim Waugh <twaugh@redhat.com>
  203. * parport_pc.c (parport_ECP_supported): Remove the IRQ conflict
  204. check since it seems totally unreliable.
  205. 2001-03-02 Tim Waugh <twaugh@redhat.com>
  206. * ieee1284_ops.c (parport_ieee1284_read_nibble): Reset nAutoFd
  207. on timeout. Matches 2.2.x behaviour.
  208. 2001-03-02 Andrew Morton <andrewm@uow.edu.au>
  209. * parport_pc.c (registered_parport): New static variable.
  210. (parport_pc_find_ports): Set it when we register PCI driver.
  211. (init_module): Unregister PCI driver if necessary when we
  212. fail.
  213. 2001-03-02 Tim Waugh <twaugh@redhat.com>
  214. * ieee1284_ops.c (parport_ieee1284_write_compat): Don't use
  215. down_trylock to reset the IRQ count. Don't even use sema_init,
  216. because it's not even necessary to reset the count. I can't
  217. remember why we ever did.
  218. 2001-01-04 Peter Osterlund <peter.osterlund@mailbox.swipnet.se>
  219. * ieee1284.c (parport_negotiate): Fix missing printk argument.
  220. 2001-01-03 Paul Schleger <Paul.Schleger@t-online.de>
  221. * probe.c (parse_data): Get rid of trailing blanks in values.
  222. Needed for XEROX XJ8C printer.
  223. 2001-01-03 Tim Waugh <twaugh@redhat.com>
  224. * parport_pc.c (parport_pc_probe_port): Say something when probes
  225. are omitted.
  226. 2001-01-03 Tim Waugh <twaugh@redhat.com>
  227. * parport_pc.c (sio_via_686a_probe): Correct dma=255 fix.
  228. 2000-11-21 Tim Waugh <twaugh@redhat.com>
  229. * parport_pc.c (parport_pc_ecp_write_block_pio): Fix
  230. reverse-to-forward logic. Spotted by Roland Kuck
  231. <rci@cityweb.de>.
  232. 2000-09-16 Cesar Eduardo Barros <cesarb@nitnet.com.br>
  233. * parport_pc.c (sio_via_686a_probe): Handle case
  234. where hardware returns 255 for IRQ or DMA.
  235. 2000-07-20 Eddie C. Dost <ecd@skynet.be>
  236. * share.c (attach_driver_chain): attach[i](port) needs to be
  237. replaced by attach[count](port).
  238. 2000-07-20 Eddie C. Dost <ecd@skynet.be>
  239. * daisy.c (add_dev): kmalloc args are in wrong order.
  240. 2000-07-12 Tim Waugh <twaugh@redhat.com>
  241. * share.c: Documentation for parport_{get,port}_port,
  242. parport_find_{number,base}.
  243. 2000-07-12 Tim Waugh <twaugh@redhat.com>
  244. * share.c (parport_unregister_device): Remove unneeded locking
  245. (test cad==dev).
  246. (parport_claim): Likewise.
  247. (parport_find_number): New function.
  248. 2000-07-12 Tim Waugh <twaugh@redhat.com>
  249. * share.c (parport_register_port): Hold the parportlist_lock while
  250. looking for a free parport number.
  251. (parport_register_driver): Make sure that attach can block.
  252. (attach_driver_chain): Likewise.
  253. 2000-07-12 Tim Waugh <twaugh@redhat.com>
  254. * share.c (call_driver_chain): Do reference counting things.
  255. (parport_get_port): New function.
  256. (parport_put_port): New function.
  257. (parport_register_port): Initialise reference count to zero.
  258. (parport_unregister_port): Check reference count rather than
  259. driver list to see if we can free the port.
  260. 2000-07-12 Tim Waugh <twaugh@redhat.com>
  261. * share.c: Clarifications in doc comments.
  262. 2000-07-12 Tim Waugh <twaugh@redhat.com>
  263. * share.c (parport_unregister_port): Fix typo in comment.
  264. 2000-07-11 Gunther Mayer <gunther.mayer@braunschweig.okersurf.de>
  265. * parport_pc.c: Support for the full range of Timedia cards.
  266. 2000-07-08 Tim Waugh <twaugh@redhat.com>
  267. * daisy.c: License block comments as part of parportbook.
  268. * ieee1284.c: Likewise.
  269. * share.c: Likewise.
  270. 2000-06-30 Petr Vandrovec <vandrove@vc.cvut.cz>
  271. * procfs.c (do_hardware_modes): Generated string can be up to 34
  272. chars long.
  273. 2000-06-20 Gunther Mayer <gunther.mayer@braunschweig.okersurf.de>
  274. * parport_pc.c (parport_pc_compat_write_block_pio): Warn about
  275. change_mode failures.
  276. (parport_pc_ecp_write_block_pio): Likewise.
  277. (parport_pc_ecp_read_block_pio): Likewise.
  278. 2000-06-20 Gunther Mayer <gunther.mayer@braunschweig.okersurf.de>
  279. * parport_pc.c (parport_SPP_supported): Warn more about possibly
  280. incorrect parameters.
  281. 2000-06-15 Tim Waugh <twaugh@redhat.com>
  282. * parport_pc.c (parport_ECP_supported): Set PARPORT_MODE_COMPAT
  283. for ECP ports, since they can all do hardware accelerated
  284. compatibility mode (I assume).
  285. 2000-06-13 Tim Waugh <twaugh@redhat.com>
  286. * parport_pc.c (cleanup_module): Remark about possible bugs.
  287. 2000-06-13 Tim Waugh <twaugh@redhat.com>
  288. * procfs.c: Break 'hardware' out into separate files.
  289. 2000-05-28 Gunther Mayer <gunther.mayer@braunschweig.okersurf.de>
  290. * Fix PCI ID printk for non-superio PCI cards.
  291. 2000-05-28 Tim Waugh <twaugh@redhat.com>
  292. * share.c (call_driver_chain): Get the driverlist_lock.
  293. (parport_register_device): Make sure that port->devices always
  294. looks consistent.
  295. (parport_register_driver): Ensure that parport drivers are given
  296. parameters that are valid for the duration of the callback by
  297. locking the portlist against changes.
  298. (parport_unregister_driver): Likewise.
  299. (parport_claim): Don't overwrite flags.
  300. 2000-05-28 Tim Waugh <twaugh@redhat.com>
  301. * daisy.c (assign_addrs): Avoid double-probing daisy-chain devices
  302. if the first probe succeeds.
  303. 2000-05-16 Tim Waugh <twaugh@redhat.com>
  304. * share.c (parport_claim): Fix SMP race.
  305. 2000-05-15 Gunther Mayer <gunther.mayer@braunschweig.okersurf.de>
  306. * parport_pc.c (parport_pc_compat_write_block_pio): Check for
  307. timeouts.
  308. (parport_pc_ecp_write_block_pio): Likewise.
  309. (parport_pc_ecp_read_block_pio): Likewise.
  310. 2000-05-02 Gunther Mayer <gunther.mayer@braunschweig.okersurf.de>
  311. * parport_pc.c: PCI SYBA patch and verbose PCI detection.
  312. 2000-05-02 Gunther Mayer <gunther.mayer@braunschweig.okersurf.de>
  313. * parport_pc.c (decode_smsc): Fix SMSC 665/666 identification.
  314. 2000-04-28 Tim Waugh <twaugh@redhat.com>
  315. * ieee1284.c: Short function descriptions can't be multiline.
  316. * daisy.c: Short function descriptions can't be multiline.
  317. 2000-04-19 Tim Waugh <twaugh@redhat.com>
  318. * parport_pc.c (parport_pc_fifo_write_block_dma): Make maxlen
  319. calculation a bit clearer.
  320. * ieee1284.c (parport_negotiate): Turn on data line drivers.
  321. * ieee1284_ops.c (parport_ieee1284_read_byte): Turn off data line
  322. drivers.
  323. (parport_ieee1284_write_compat): Turn on data line drivers.
  324. * daisy.c (assign_addrs): Turn on data line drivers.
  325. (cpp_mux): Likewise.
  326. (cpp_daisy): Likewise.
  327. 2000-04-04 Tim Waugh <twaugh@redhat.com>
  328. * parport_pc.c: Add support for another PCI card.
  329. 2000-04-04 Tim Waugh <twaugh@redhat.com>
  330. * daisy.c: Documentation in kernel-doc format.
  331. * ieee1284.c: Likewise.
  332. * share.c: Likewise.
  333. 2000-04-01 Tim Waugh <twaugh@redhat.com>
  334. * share.c (parport_register_device): Need to hold the module
  335. reference counts before sleeping.
  336. 2000-03-27 Tim Waugh <twaugh@redhat.com>
  337. * parport_pc.c (parport_pc_ecp_read_block_pio): Correct operation
  338. when peripheral is trying to send data when we stop listening.
  339. 2000-03-22 Tim Waugh <twaugh@redhat.com>
  340. * init.c (parport_setup): Fix return value.
  341. 2000-03-21 Tim Waugh <twaugh@redhat.com>
  342. * parport_pc.c (parport_pc_pci_probe): Fix return value; call
  343. pci_enable_device.
  344. 2000-03-16 Tim Waugh <twaugh@redhat.com>
  345. * parport_pc.c (parport_ECP_supported): This seems to trigger on
  346. machines that don't have an IRQ conflict; toned down the warning
  347. message accordingly.
  348. 2000-03-16 Gunther Mayer <gunther.mayer@braunschweig.netsurf.de>
  349. * parport_pc.c (show_parconfig_smsc37c669): Fix typo.
  350. (decode_winbond): More IDs.
  351. (winbond_check): Protect against false positives.
  352. (winbond_check2): Likewise.
  353. (smsc_check): Likewise.
  354. 2000-03-15 Tim Waugh <twaugh@redhat.com>
  355. * parport_pc.c (cleanup_module): Don't call pci_unregister_driver
  356. if we didn't call pci_register_driver first.
  357. 2000-03-13 Tim Waugh <twaugh@redhat.com>
  358. * parport_pc.c (parport_pc_init): Moved from asm/parport.h.
  359. * Config.in: CONFIG_PARPORT_PC_SUPERIO: new option.
  360. * parport_pc.c (show_parconfig_smsc37c669): Make __devinit.
  361. (show_parconfig_winbond): Likewise.
  362. (decode_winbond): Likewise.
  363. (decode_smsc): Likewise.
  364. (winbond_check): Likewise.
  365. (winbond_check2): Likewise.
  366. (smsc_check): Likewise.
  367. (detect_and_report_winbond): Likewise.
  368. (detect_and_report_smsc): Likewise.
  369. (get_superio_dma): Likewise.
  370. (get_superio_irq): Likewise.
  371. (parport_pc_find_isa_ports): New function.
  372. (parport_pc_find_ports): New function.
  373. (init_module): Make superio a config option, not a parameter.
  374. 2000-03-10 Tim Waugh <twaugh@redhat.com>
  375. * parport_pc.c (decode_winbond): Use correct 83877ATF chip ID.
  376. (decode_winbond): Fix typo.
  377. 2000-03-09 Tim Waugh <twaugh@redhat.com>
  378. * parport_pc.c: Integrate SuperIO PCI probe with normal PCI card
  379. probe, so that the MODULE_DEVICE_TABLE is complete.