Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 200060
b: refs/heads/master
c: 4253868
h: refs/heads/master
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed May 10, 2010
1 parent 6ca0e10 commit 008f603
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 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: 22e6bcbdcf9279321dbe646c5a234b816db12881
refs/heads/master: 4253868034221db6e42dbbb61e0305fe1757f8da
5 changes: 3 additions & 2 deletions trunk/drivers/edac/i7core_edac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1124,6 +1124,7 @@ static struct mcidev_sysfs_attribute i7core_inj_attrs[] = {
.show = i7core_ce_regs_show,
.store = NULL,
},
{ .attr = { .name = NULL } }
};

/****************************************************************************
Expand Down Expand Up @@ -1155,9 +1156,9 @@ static void i7core_put_devices(struct i7core_dev *i7core_dev)

static void i7core_put_all_devices(void)
{
struct i7core_dev *i7core_dev;
struct i7core_dev *i7core_dev, *tmp;

list_for_each_entry(i7core_dev, &i7core_edac_list, list)
list_for_each_entry_safe(i7core_dev, tmp, &i7core_edac_list, list)
i7core_put_devices(i7core_dev);
}

Expand Down

0 comments on commit 008f603

Please sign in to comment.