aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeil Horman <nhorman@redhat.com>2005-05-25 12:31:27 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-25 15:31:27 -0700
commitdca79a046b93a81496bb30ca01177fb17f37ab72 (patch)
treeed5435413221f7a7b7e28edb49a4b47a9ac94594
parent5daf05fbf73fc199e7a93a818e504856d07c5586 (diff)
downloadlinux-dca79a046b93a81496bb30ca01177fb17f37ab72.tar.gz
[PATCH] ipmi build fix
It looks like the recent IPMI patches had some -mm-onlyisms. Signed-off-by: Neil Horman <nhorman@redhat.com> Cc: Corey Minyard <minyard@acm.org> Cc: Greg KH <greg@kroah.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--drivers/char/ipmi/ipmi_devintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/ipmi/ipmi_devintf.c b/drivers/char/ipmi/ipmi_devintf.c
index 4bb9af736fba2..6dc765dc5413d 100644
--- a/drivers/char/ipmi/ipmi_devintf.c
+++ b/drivers/char/ipmi/ipmi_devintf.c
@@ -520,7 +520,7 @@ MODULE_PARM_DESC(ipmi_major, "Sets the major number of the IPMI device. By"
" interface. Other values will set the major device number"
" to that value.");
-static struct class *ipmi_class;
+static struct class_simple *ipmi_class;
static void ipmi_new_smi(int if_num)
{
@@ -534,7 +534,7 @@ static void ipmi_new_smi(int if_num)
static void ipmi_smi_gone(int if_num)
{
- class_simple_device_remove(ipmi_class, MKDEV(ipmi_major, if_num));
+ class_simple_device_remove(MKDEV(ipmi_major, if_num));
devfs_remove("ipmidev/%d", if_num);
}