Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 304762
b: refs/heads/master
c: 611b564
h: refs/heads/master
v: v3
  • Loading branch information
Samuel Iglesias Gonsalvez authored and Greg Kroah-Hartman committed May 19, 2012
1 parent 27d2632 commit 95740ce
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 25 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ec440335b1e360ab82ef4ce169b682ab4b9dcd2a
refs/heads/master: 611b564d196f8f6b90e0d8808be44eb5e18db9a2
20 changes: 4 additions & 16 deletions trunk/drivers/staging/ipack/bridges/tpci200.c
Original file line number Diff line number Diff line change
Expand Up @@ -371,9 +371,7 @@ static irqreturn_t tpci200_interrupt(int irq, void *dev_id)

#ifdef CONFIG_SYSFS

static struct ipack_device *tpci200_slot_register(const char *board_name,
int size,
unsigned int tpci200_number,
static struct ipack_device *tpci200_slot_register(unsigned int tpci200_number,
unsigned int slot_position)
{
int found = 0;
Expand Down Expand Up @@ -437,7 +435,7 @@ static ssize_t tpci200_store_board(struct device *pdev, const char *buf,
if (dev != NULL)
return -EBUSY;

dev = tpci200_slot_register(buf, count, card->number, slot);
dev = tpci200_slot_register(card->number, slot);
if (dev == NULL)
return -ENODEV;

Expand All @@ -450,7 +448,7 @@ static ssize_t tpci200_show_board(struct device *pdev, char *buf, int slot)
struct ipack_device *dev = card->slots[slot].dev;

if (dev != NULL)
return snprintf(buf, PAGE_SIZE, "%s\n", dev->board_name);
return snprintf(buf, PAGE_SIZE, "%s\n", dev_name(&dev->dev));
else
return snprintf(buf, PAGE_SIZE, "none\n");
}
Expand Down Expand Up @@ -975,17 +973,7 @@ static int tpci200_request_irq(struct ipack_device *dev, int vector,
slot_irq->vector = vector;
slot_irq->handler = handler;
slot_irq->arg = arg;
if (dev->board_name) {
if (strlen(dev->board_name) > IPACK_IRQ_NAME_SIZE) {
pr_warning("Slot [%s %d:%d] IRQ name too long (%d char > %d char MAX). Will be truncated!\n",
TPCI200_SHORTNAME, dev->bus_nr, dev->slot,
(int)strlen(dev->board_name),
IPACK_IRQ_NAME_SIZE);
}
strncpy(slot_irq->name, dev->board_name, IPACK_IRQ_NAME_SIZE-1);
} else {
strcpy(slot_irq->name, "Unknown");
}
slot_irq->name = dev_name(&dev->dev);

tpci200->slots[dev->slot].irq = slot_irq;
res = __tpci200_request_irq(tpci200, dev);
Expand Down
8 changes: 4 additions & 4 deletions trunk/drivers/staging/ipack/bridges/tpci200.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@
*
*/
struct slot_irq {
int vector;
int (*handler)(void *);
void *arg;
char name[IPACK_IRQ_NAME_SIZE];
int vector;
int (*handler)(void *);
void *arg;
const char *name;
};

/**
Expand Down
4 changes: 0 additions & 4 deletions trunk/drivers/staging/ipack/ipack.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@

#include <linux/device.h>

#define IPACK_BOARD_NAME_SIZE 16
#define IPACK_IRQ_NAME_SIZE 50
#define IPACK_IDPROM_OFFSET_I 0x01
#define IPACK_IDPROM_OFFSET_P 0x03
#define IPACK_IDPROM_OFFSET_A 0x05
Expand Down Expand Up @@ -64,8 +62,6 @@ struct ipack_addr_space {
* by the carrier board throught bus->ops.
*/
struct ipack_device {
char board_name[IPACK_BOARD_NAME_SIZE];
char bus_name[IPACK_BOARD_NAME_SIZE];
unsigned int bus_nr;
unsigned int slot;
unsigned int irq;
Expand Down

0 comments on commit 95740ce

Please sign in to comment.