diff options
author | Douglas Thompson <dougthompson@xmission.com> | 2007-07-19 01:50:29 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-19 10:04:57 -0700 |
commit | 1c3631ff1f805cb72644fcde02b7c58950f21cd5 (patch) | |
tree | 2d0f8867f21cf2dedb7d94a262028898333583f4 /drivers/edac/edac_module.h | |
parent | 8096cfafbb7ad3cb1a286ae7e8086167f4ebb4b6 (diff) | |
download | linux-1c3631ff1f805cb72644fcde02b7c58950f21cd5.tar.bz2 |
drivers/edac: fix edac_device sysfs completion code
With feedback, this patch corrects operation of the kobject release operation
on kobjects, attributes and controls for the edac_device.
Cc: Alan Cox alan@lxorguk.ukuu.org.uk
Signed-off-by: Doug Thompson <dougthompson@xmission.com>
Acked-by: Greg KH <greg@kroah.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_module.h')
-rw-r--r-- | drivers/edac/edac_module.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/edac/edac_module.h b/drivers/edac/edac_module.h index 6368cc658fc6..a2134dfc3cc6 100644 --- a/drivers/edac/edac_module.h +++ b/drivers/edac/edac_module.h @@ -37,6 +37,10 @@ extern int edac_mc_get_panic_on_ue(void); extern int edac_get_poll_msec(void); extern int edac_mc_get_poll_msec(void); +extern int edac_device_register_sysfs_main_kobj( + struct edac_device_ctl_info *edac_dev); +extern void edac_device_unregister_sysfs_main_kobj( + struct edac_device_ctl_info *edac_dev); extern int edac_device_create_sysfs(struct edac_device_ctl_info *edac_dev); extern void edac_device_remove_sysfs(struct edac_device_ctl_info *edac_dev); extern struct sysdev_class *edac_get_edac_class(void); |