Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 39373
b: refs/heads/master
c: 49a6cbe
h: refs/heads/master
i:
  39371: 2d58070
v: v3
  • Loading branch information
Jeff Garzik authored and Linus Torvalds committed Oct 11, 2006
1 parent b2186c4 commit 8ede1a4
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 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: 69b2186c5fcb335e29c558e3b4e410e1939b5cc8
refs/heads/master: 49a6cbe1cd8a72451d9d6ab5b1e163f17c1bbee3
28 changes: 21 additions & 7 deletions trunk/drivers/mca/mca-bus.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ static DEVICE_ATTR(pos, S_IRUGO, mca_show_pos, NULL);
int __init mca_register_device(int bus, struct mca_device *mca_dev)
{
struct mca_bus *mca_bus = mca_root_busses[bus];
int rc;

mca_dev->dev.parent = &mca_bus->dev;
mca_dev->dev.bus = &mca_bus_type;
Expand All @@ -108,13 +109,23 @@ int __init mca_register_device(int bus, struct mca_device *mca_dev)
mca_dev->dev.dma_mask = &mca_dev->dma_mask;
mca_dev->dev.coherent_dma_mask = mca_dev->dma_mask;

if (device_register(&mca_dev->dev))
return 0;
rc = device_register(&mca_dev->dev);
if (rc)
goto err_out;

device_create_file(&mca_dev->dev, &dev_attr_id);
device_create_file(&mca_dev->dev, &dev_attr_pos);
rc = device_create_file(&mca_dev->dev, &dev_attr_id);
if (rc) goto err_out_devreg;
rc = device_create_file(&mca_dev->dev, &dev_attr_pos);
if (rc) goto err_out_id;

return 1;

err_out_id:
device_remove_file(&mca_dev->dev, &dev_attr_id);
err_out_devreg:
device_unregister(&mca_dev->dev);
err_out:
return 0;
}

/* */
Expand All @@ -130,13 +141,16 @@ struct mca_bus * __devinit mca_attach_bus(int bus)
return NULL;
}

mca_bus = kmalloc(sizeof(struct mca_bus), GFP_KERNEL);
mca_bus = kzalloc(sizeof(struct mca_bus), GFP_KERNEL);
if (!mca_bus)
return NULL;
memset(mca_bus, 0, sizeof(struct mca_bus));

sprintf(mca_bus->dev.bus_id,"mca%d",bus);
sprintf(mca_bus->name,"Host %s MCA Bridge", bus ? "Secondary" : "Primary");
device_register(&mca_bus->dev);
if (device_register(&mca_bus->dev)) {
kfree(mca_bus);
return NULL;
}

mca_root_busses[bus] = mca_bus;

Expand Down

0 comments on commit 8ede1a4

Please sign in to comment.