[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>

authored by Neil Horman and committed by Linus Torvalds dca79a04 5daf05fb

+2 -2
+2 -2
drivers/char/ipmi/ipmi_devintf.c
··· 520 " interface. Other values will set the major device number" 521 " to that value."); 522 523 - static struct class *ipmi_class; 524 525 static void ipmi_new_smi(int if_num) 526 { ··· 534 535 static void ipmi_smi_gone(int if_num) 536 { 537 - class_simple_device_remove(ipmi_class, MKDEV(ipmi_major, if_num)); 538 devfs_remove("ipmidev/%d", if_num); 539 } 540
··· 520 " interface. Other values will set the major device number" 521 " to that value."); 522 523 + static struct class_simple *ipmi_class; 524 525 static void ipmi_new_smi(int if_num) 526 { ··· 534 535 static void ipmi_smi_gone(int if_num) 536 { 537 + class_simple_device_remove(MKDEV(ipmi_major, if_num)); 538 devfs_remove("ipmidev/%d", if_num); 539 } 540