Skip to content

Commit

Permalink
pnp: struct device - replace bus_id with dev_name(), dev_set_name()
Browse files Browse the repository at this point in the history
Signed-off-by: Kay Sievers <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
kaysievers authored and gregkh committed Jan 6, 2009
1 parent ba88b00 commit c85e37c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
7 changes: 3 additions & 4 deletions drivers/pnp/card.c
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,7 @@ struct pnp_card *pnp_alloc_card(struct pnp_protocol *protocol, int id, char *pnp
card->number = id;

card->dev.parent = &card->protocol->dev;
sprintf(card->dev.bus_id, "%02x:%02x", card->protocol->number,
card->number);
dev_set_name(&card->dev, "%02x:%02x", card->protocol->number, card->number);

card->dev.coherent_dma_mask = DMA_24BIT_MASK;
card->dev.dma_mask = &card->dev.coherent_dma_mask;
Expand Down Expand Up @@ -295,8 +294,8 @@ int pnp_add_card_device(struct pnp_card *card, struct pnp_dev *dev)
{
dev->dev.parent = &card->dev;
dev->card_link = NULL;
snprintf(dev->dev.bus_id, BUS_ID_SIZE, "%02x:%02x.%02x",
dev->protocol->number, card->number, dev->number);
dev_set_name(&dev->dev, "%02x:%02x.%02x",
dev->protocol->number, card->number, dev->number);
spin_lock(&pnp_lock);
dev->card = card;
list_add_tail(&dev->card_list, &card->devices);
Expand Down
5 changes: 2 additions & 3 deletions drivers/pnp/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ int pnp_register_protocol(struct pnp_protocol *protocol)
spin_unlock(&pnp_lock);

protocol->number = nodenum;
sprintf(protocol->dev.bus_id, "pnp%d", nodenum);
dev_set_name(&protocol->dev, "pnp%d", nodenum);
return device_register(&protocol->dev);
}

Expand Down Expand Up @@ -145,8 +145,7 @@ struct pnp_dev *pnp_alloc_dev(struct pnp_protocol *protocol, int id, char *pnpid
dev->dev.coherent_dma_mask = dev->dma_mask;
dev->dev.release = &pnp_release_device;

sprintf(dev->dev.bus_id, "%02x:%02x", dev->protocol->number,
dev->number);
dev_set_name(&dev->dev, "%02x:%02x", dev->protocol->number, dev->number);

dev_id = pnp_add_id(dev, pnpid);
if (!dev_id) {
Expand Down
2 changes: 1 addition & 1 deletion drivers/pnp/system.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ static void reserve_range(struct pnp_dev *dev, resource_size_t start,
resource_size_t end, int port)
{
char *regionid;
const char *pnpid = dev->dev.bus_id;
const char *pnpid = dev_name(&dev->dev);
struct resource *res;

regionid = kmalloc(16, GFP_KERNEL);
Expand Down

0 comments on commit c85e37c

Please sign in to comment.