summaryrefslogtreecommitdiff
path: root/drivers/edac/edac_pci.c
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2009-04-13 14:40:21 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2009-04-13 15:04:34 -0700
commitfbeb4384748abb78531bbe1e80d627412a0abcfa (patch)
tree63520b218f560bd04bec777b3327c4df0576c0a8 /drivers/edac/edac_pci.c
parente6da46b273443c8cebef81a68b2d0d955b8a07b4 (diff)
downloadlinux-3.10-fbeb4384748abb78531bbe1e80d627412a0abcfa.tar.gz
linux-3.10-fbeb4384748abb78531bbe1e80d627412a0abcfa.tar.bz2
linux-3.10-fbeb4384748abb78531bbe1e80d627412a0abcfa.zip
edac: use to_delayed_work()
The edac-core driver includes code which assumes that the work_struct which is included in every delayed_work is the first member of that structure. This is currently the case but might change in the future, so use to_delayed_work() instead, which doesn't make such an assumption. linux-2.6.30-rc1 has the to_delayed_work() function that will allow this patch to work Signed-off-by: Jean Delvare <khali@linux-fr.org> Signed-off-by: Doug Thompson <dougthompson@xmission.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/edac/edac_pci.c')
-rw-r--r--drivers/edac/edac_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/edac_pci.c b/drivers/edac/edac_pci.c
index 5b150aea703..30b585b1d60 100644
--- a/drivers/edac/edac_pci.c
+++ b/drivers/edac/edac_pci.c
@@ -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;