linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/28] staging: comedi: more clean-up and remove legacy attach
@ 2014-09-01 11:03 Ian Abbott
  2014-09-01 11:03 ` [PATCH 01/28] staging: comedi: amplc_pci230: update MODULE_DESCRIPTION() Ian Abbott
                   ` (28 more replies)
  0 siblings, 29 replies; 30+ messages in thread
From: Ian Abbott @ 2014-09-01 11:03 UTC (permalink / raw)
  To: driverdev-devel
  Cc: Greg Kroah-Hartman, Ian Abbott, H Hartley Sweeten, linux-kernel

Continue to clean up the amplc_pci230 driver code and remove the legacy
attach mechanism, since it isn't very useful for this driver (see PATCH
05/28).

01) staging: comedi: amplc_pci230: update MODULE_DESCRIPTION()
02) staging: comedi: amplc_pci230: don't use multiple blank lines
03) staging: comedi: amplc_pci230: remove some unnecessary parentheses
04) staging: comedi: amplc_pci230: collapse some 'else { if' chains
05) staging: comedi: amplc_pci230: remove "legacy" attach mechanism
06) staging: comedi: amplc_pci230: no need to manipulate PCI ref count
07) staging: comedi: amplc_pci230: set detach handler to
    comedi_pci_detach()
08) staging: comedi: amplc_pci230: absorb pci230_attach_common()
09) staging: comedi: amplc_pci230: no need to comedi_set_hw_dev() here
10) staging: comedi: amplc_pci230: absorb pci230_alloc_private()
11) staging: comedi: amplc_pci230: remove ai_chans member
12) staging: comedi: amplc_pci230: remove ao_chans member
13) staging: comedi: amplc_pci230: shrink struct pci230_board
14) staging: comedi: amplc_pci230: simplify pci230_ao_mangle_datum()
15) staging: comedi: amplc_pci230: simplify pci230_ai_read()
16) staging: comedi: amplc_pci230: remove 'inline'
17) staging: comedi: amplc_pci230: rename pci230_ai_rinsn()
18) staging: comedi: amplc_pci230: add `pci230_` prefix to functions
19) staging: comedi: amplc_pci230: use comedi_range_is_bipolar()
20) staging: comedi: amplc_pci230: make `intr_running` a bitfield
21) staging: comedi: amplc_pci230: replace `state` member with bitfields
22) staging: comedi: amplc_pci230: rewrite shared resource handling
23) staging: comedi: amplc_pci230: reduce indentation in
    pci230_ao_inttrig_scan_begin()
24) staging: comedi: amplc_pci230: reduce indentation in
    pci230_ao_start()
25) staging: comedi: amplc_pci230: reduce indentation in
    pci230_ai_inttrig_convert()
26) staging: comedi: amplc_pci230: reduce indentation in
    pci230_ai_start()
27) staging: comedi: amplc_pci230: change pci230_handle_ao_fifo() return
    type
28) staging: comedi: amplc_pci230: simplify interrupt enable handling

 drivers/staging/comedi/drivers/amplc_pci230.c | 977 ++++++++++----------------
 1 file changed, 384 insertions(+), 593 deletions(-)

^ permalink raw reply	[flat|nested] 30+ messages in thread

end of thread, other threads:[~2014-09-02 17:44 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-01 11:03 [PATCH 00/28] staging: comedi: more clean-up and remove legacy attach Ian Abbott
2014-09-01 11:03 ` [PATCH 01/28] staging: comedi: amplc_pci230: update MODULE_DESCRIPTION() Ian Abbott
2014-09-01 11:03 ` [PATCH 02/28] staging: comedi: amplc_pci230: don't use multiple blank lines Ian Abbott
2014-09-01 11:03 ` [PATCH 03/28] staging: comedi: amplc_pci230: remove some unnecessary parentheses Ian Abbott
2014-09-01 11:03 ` [PATCH 04/28] staging: comedi: amplc_pci230: collapse some 'else { if' chains Ian Abbott
2014-09-01 11:03 ` [PATCH 05/28] staging: comedi: amplc_pci230: remove "legacy" attach mechanism Ian Abbott
2014-09-01 11:03 ` [PATCH 06/28] staging: comedi: amplc_pci230: no need to manipulate PCI ref count Ian Abbott
2014-09-01 11:03 ` [PATCH 07/28] staging: comedi: amplc_pci230: set detach handler to comedi_pci_detach() Ian Abbott
2014-09-01 11:03 ` [PATCH 08/28] staging: comedi: amplc_pci230: absorb pci230_attach_common() Ian Abbott
2014-09-01 11:03 ` [PATCH 09/28] staging: comedi: amplc_pci230: no need to comedi_set_hw_dev() here Ian Abbott
2014-09-01 11:03 ` [PATCH 10/28] staging: comedi: amplc_pci230: absorb pci230_alloc_private() Ian Abbott
2014-09-01 11:03 ` [PATCH 11/28] staging: comedi: amplc_pci230: remove ai_chans member Ian Abbott
2014-09-01 11:03 ` [PATCH 12/28] staging: comedi: amplc_pci230: remove ao_chans member Ian Abbott
2014-09-01 11:03 ` [PATCH 13/28] staging: comedi: amplc_pci230: shrink struct pci230_board Ian Abbott
2014-09-01 11:03 ` [PATCH 14/28] staging: comedi: amplc_pci230: simplify pci230_ao_mangle_datum() Ian Abbott
2014-09-01 11:03 ` [PATCH 15/28] staging: comedi: amplc_pci230: simplify pci230_ai_read() Ian Abbott
2014-09-01 11:03 ` [PATCH 16/28] staging: comedi: amplc_pci230: remove 'inline' Ian Abbott
2014-09-01 11:03 ` [PATCH 17/28] staging: comedi: amplc_pci230: rename pci230_ai_rinsn() Ian Abbott
2014-09-01 11:03 ` [PATCH 18/28] staging: comedi: amplc_pci230: add `pci230_` prefix to functions Ian Abbott
2014-09-01 11:03 ` [PATCH 19/28] staging: comedi: amplc_pci230: use comedi_range_is_bipolar() Ian Abbott
2014-09-01 11:03 ` [PATCH 20/28] staging: comedi: amplc_pci230: make `intr_running` a bitfield Ian Abbott
2014-09-01 11:03 ` [PATCH 21/28] staging: comedi: amplc_pci230: replace `state` member with bitfields Ian Abbott
2014-09-01 11:03 ` [PATCH 22/28] staging: comedi: amplc_pci230: rewrite shared resource handling Ian Abbott
2014-09-01 11:03 ` [PATCH 23/28] staging: comedi: amplc_pci230: reduce indentation in pci230_ao_inttrig_scan_begin() Ian Abbott
2014-09-01 11:03 ` [PATCH 24/28] staging: comedi: amplc_pci230: reduce indentation in pci230_ao_start() Ian Abbott
2014-09-01 11:03 ` [PATCH 25/28] staging: comedi: amplc_pci230: reduce indentation in pci230_ai_inttrig_convert() Ian Abbott
2014-09-01 11:03 ` [PATCH 26/28] staging: comedi: amplc_pci230: reduce indentation in pci230_ai_start() Ian Abbott
2014-09-01 11:03 ` [PATCH 27/28] staging: comedi: amplc_pci230: change pci230_handle_ao_fifo() return type Ian Abbott
2014-09-01 11:04 ` [PATCH 28/28] staging: comedi: amplc_pci230: simplify interrupt enable handling Ian Abbott
2014-09-02 17:43 ` [PATCH 00/28] staging: comedi: more clean-up and remove legacy attach Hartley Sweeten

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).