Re: [PATCH 1/2] Staging: comedi: fix warning issue in cb_pcidda.c

From: Jesper Juhl
Date: Tue Aug 16 2011 - 07:10:46 EST


On Tue, 16 Aug 2011, Ravishankar wrote:

> From: root <root@xxxxxxxxxxxxxxxxxxxxx>
>

>From should be a real person.


> This is a patch to the cb_pcidda.c file that fixes up a line over 80 charcter warning found by the checkpatch.pl tool
>
> Signed-off-by: Ravishankar <ravishankarkm32@xxxxxxxxx>
> ---
> drivers/staging/comedi/drivers/cb_pcidda.c | 15 ++++++++++-----
> 1 files changed, 10 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/staging/comedi/drivers/cb_pcidda.c b/drivers/staging/comedi/drivers/cb_pcidda.c
> index 9716f19..4882005 100644
> --- a/drivers/staging/comedi/drivers/cb_pcidda.c
> +++ b/drivers/staging/comedi/drivers/cb_pcidda.c
> @@ -51,9 +51,11 @@ Please report success/failure with other different cards to
> #include "comedi_pci.h"
> #include "8255.h"
>
> -#define PCI_VENDOR_ID_CB 0x1307 /* PCI vendor number of ComputerBoards */
> +/* PCI vendor number of ComputerBoards */
> +#define PCI_VENDOR_ID_CB 0x1307
> #define EEPROM_SIZE 128 /* number of entries in eeprom */
> -#define MAX_AO_CHANNELS 8 /* maximum number of ao channels for supported boards */
> +/* maximum number of ao channels for supported boards */
> +#define MAX_AO_CHANNELS 8
>

IMHO these comments are better placed where they were originally.


> /* PCI-DDA base addresses */
> #define DIGITALIO_BADRINDEX 2
> @@ -227,8 +229,10 @@ struct cb_pcidda_private {
> /* unsigned long control_status; */
> /* unsigned long adc_fifo; */
>
> - unsigned int dac_cal1_bits; /* bits last written to da calibration register 1 */
> - unsigned int ao_range[MAX_AO_CHANNELS]; /* current range settings for output channels */
> + /* bits last written to da calibration register 1 */
> + unsigned int dac_cal1_bits;
> + /* current range settings for output channels */
> + unsigned int ao_range[MAX_AO_CHANNELS];
> u16 eeprom_data[EEPROM_SIZE]; /* software copy of board's eeprom */
> };
>
> @@ -378,7 +382,8 @@ found:
> printk(KERN_CONT " eeprom:");
> for (index = 0; index < EEPROM_SIZE; index++) {
> devpriv->eeprom_data[index] = cb_pcidda_read_eeprom(dev, index);
> - printk(KERN_CONT " %i:0x%x ", index, devpriv->eeprom_data[index]);
> + printk(KERN_CONT " %i:0x%x ", index,
> + devpriv->eeprom_data[index]);
> }
> printk(KERN_CONT "\n");
>
>

--
Jesper Juhl <jj@xxxxxxxxxxxxx> http://www.chaosbits.net/
Don't top-post http://www.catb.org/jargon/html/T/top-post.html
Plain text mails only, please.

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/