Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 143232
b: refs/heads/master
c: fbeb438
h: refs/heads/master
v: v3
  • Loading branch information
Jean Delvare authored and Linus Torvalds committed Apr 13, 2009
1 parent 6f8a5fd commit a37555c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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: e6da46b273443c8cebef81a68b2d0d955b8a07b4
refs/heads/master: fbeb4384748abb78531bbe1e80d627412a0abcfa
2 changes: 1 addition & 1 deletion trunk/drivers/edac/edac_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ static void del_edac_device_from_global_list(struct edac_device_ctl_info
*/
static void edac_device_workq_function(struct work_struct *work_req)
{
struct delayed_work *d_work = (struct delayed_work *)work_req;
struct delayed_work *d_work = to_delayed_work(work_req);
struct edac_device_ctl_info *edac_dev = to_edac_device_ctl_work(d_work);

mutex_lock(&device_ctls_mutex);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/edac/edac_mc.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ static int edac_mc_assert_error_check_and_clear(void)
*/
static void edac_mc_workq_function(struct work_struct *work_req)
{
struct delayed_work *d_work = (struct delayed_work *)work_req;
struct delayed_work *d_work = to_delayed_work(work_req);
struct mem_ctl_info *mci = to_edac_mem_ctl_work(d_work);

mutex_lock(&mem_ctls_mutex);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/edac/edac_pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ EXPORT_SYMBOL_GPL(edac_pci_find);
*/
static void edac_pci_workq_function(struct work_struct *work_req)
{
struct delayed_work *d_work = (struct delayed_work *)work_req;
struct delayed_work *d_work = to_delayed_work(work_req);
struct edac_pci_ctl_info *pci = to_edac_pci_ctl_work(d_work);
int msec;
unsigned long delay;
Expand Down

0 comments on commit a37555c

Please sign in to comment.