Skip to content

Commit

Permalink
drivers: pcmcia: ds.c fix checkpatch errors
Browse files Browse the repository at this point in the history
fix these checkpatch errors :
- ERROR: spaces required around that '<' (ctx:VxW)
- ERROR: "foo * bar" should be "foo *bar"
- WARNING: please, no space before tabs

Signed-off-by: Laurent Navet <laurent.navet@gmail.com>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
  • Loading branch information
Laurent Navet authored and Dominik Brodowski committed May 30, 2015
1 parent 221f7ed commit 46f533c
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions drivers/pcmcia/ds.c
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ static void pcmcia_check_driver(struct pcmcia_driver *p_drv)


struct pcmcia_dynid {
struct list_head node;
struct pcmcia_device_id id;
struct list_head node;
struct pcmcia_device_id id;
};

/**
Expand Down Expand Up @@ -566,7 +566,7 @@ static struct pcmcia_device *pcmcia_device_add(struct pcmcia_socket *s,
c->io[i].name = p_dev->devname;
c->io[i].flags = IORESOURCE_IO;
}
for (i = 0; i< MAX_WIN; i++) {
for (i = 0; i < MAX_WIN; i++) {
c->mem[i].name = p_dev->devname;
c->mem[i].flags = IORESOURCE_MEM;
}
Expand Down Expand Up @@ -651,7 +651,7 @@ static int pcmcia_card_add(struct pcmcia_socket *s)
}


static int pcmcia_requery_callback(struct device *dev, void * _data)
static int pcmcia_requery_callback(struct device *dev, void *_data)
{
struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
if (!p_dev->dev.driver) {
Expand Down Expand Up @@ -729,7 +729,7 @@ static void pcmcia_requery(struct pcmcia_socket *s)
* the one provided by the card is broken. The firmware files reside in
* /lib/firmware/ in userspace.
*/
static int pcmcia_load_firmware(struct pcmcia_device *dev, char * filename)
static int pcmcia_load_firmware(struct pcmcia_device *dev, char *filename)
{
struct pcmcia_socket *s = dev->socket;
const struct firmware *fw;
Expand Down Expand Up @@ -781,7 +781,8 @@ static int pcmcia_load_firmware(struct pcmcia_device *dev, char * filename)

#else /* !CONFIG_PCMCIA_LOAD_CIS */

static inline int pcmcia_load_firmware(struct pcmcia_device *dev, char * filename)
static inline int pcmcia_load_firmware(struct pcmcia_device *dev,
char *filename)
{
return -ENODEV;
}
Expand Down Expand Up @@ -1206,7 +1207,7 @@ static int pcmcia_dev_resume(struct device *dev)
}


static int pcmcia_bus_suspend_callback(struct device *dev, void * _data)
static int pcmcia_bus_suspend_callback(struct device *dev, void *_data)
{
struct pcmcia_socket *skt = _data;
struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
Expand All @@ -1217,7 +1218,7 @@ static int pcmcia_bus_suspend_callback(struct device *dev, void * _data)
return runtime_suspend(dev);
}

static int pcmcia_bus_resume_callback(struct device *dev, void * _data)
static int pcmcia_bus_resume_callback(struct device *dev, void *_data)
{
struct pcmcia_socket *skt = _data;
struct pcmcia_device *p_dev = to_pcmcia_dev(dev);
Expand Down

0 comments on commit 46f533c

Please sign in to comment.