[PATCH 37/46] staging: comedi: adl_pci9111: cleanup pci9111_hr_ai_range

H Hartley Sweeten hartleys at visionengravers.com
Tue Sep 11 02:04:18 UTC 2012


For aesthetic reasons, rename the symbol and fix the whitespace.

Signed-off-by: H Hartley Sweeten <hsweeten at visionengravers.com>
Cc: Ian Abbott <abbotti at mev.co.uk>
Cc: Greg Kroah-Hartman <gregkh at linuxfoundation.org>
---
 drivers/staging/comedi/drivers/adl_pci9111.c | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/drivers/staging/comedi/drivers/adl_pci9111.c b/drivers/staging/comedi/drivers/adl_pci9111.c
index 721aaa2..b6f6c5c 100644
--- a/drivers/staging/comedi/drivers/adl_pci9111.c
+++ b/drivers/staging/comedi/drivers/adl_pci9111.c
@@ -119,15 +119,15 @@ TODO:
 #define PCI9111_8254_BASE_REG		0x40
 #define PCI9111_INT_CLR_REG		0x48
 
-static const struct comedi_lrange pci9111_hr_ai_range = {
+static const struct comedi_lrange pci9111_ai_range = {
 	5,
 	{
-	 BIP_RANGE(10),
-	 BIP_RANGE(5),
-	 BIP_RANGE(2.5),
-	 BIP_RANGE(1.25),
-	 BIP_RANGE(0.625)
-	 }
+		BIP_RANGE(10),
+		BIP_RANGE(5),
+		BIP_RANGE(2.5),
+		BIP_RANGE(1.25),
+		BIP_RANGE(0.625)
+	}
 };
 
 /*  Private data structure */
@@ -990,7 +990,7 @@ static int pci9111_attach_pci(struct comedi_device *dev,
 	s->n_chan	= 16;
 	s->maxdata	= 0xffff;
 	s->len_chanlist	= 16;
-	s->range_table	= &pci9111_hr_ai_range;
+	s->range_table	= &pci9111_ai_range;
 	s->cancel	= pci9111_ai_cancel;
 	s->insn_read	= pci9111_ai_insn_read;
 	s->do_cmdtest	= pci9111_ai_do_cmd_test;
-- 
1.7.11




More information about the devel mailing list