[PATCH] shpchp - removed unncessary 'magic' member from slot
authorKenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
Thu, 26 Jan 2006 01:03:40 +0000 (10:03 +0900)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 23 Mar 2006 22:35:12 +0000 (14:35 -0800)
This patch removes unnecessary 'magic' member from struct slot of
SHPCHP driver.

Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/pci/hotplug/shpchp.h
drivers/pci/hotplug/shpchp_core.c

index b1e2a77..1e6d354 100644 (file)
@@ -53,9 +53,7 @@ extern int shpchp_debug;
 #define info(format, arg...) printk(KERN_INFO "%s: " format, MY_NAME , ## arg)
 #define warn(format, arg...) printk(KERN_WARNING "%s: " format, MY_NAME , ## arg)
 
-#define SLOT_MAGIC     0x67267321
 struct slot {
-       u32 magic;
        u8 bus;
        u8 device;
        u16 status;
@@ -287,10 +285,6 @@ static inline int slot_paranoia_check (struct slot *slot, const char *function)
                dbg("%s - slot == NULL", function);
                return -1;
        }
-       if (slot->magic != SLOT_MAGIC) {
-               dbg("%s - bad magic number for slot", function);
-               return -1;
-       }
        if (!slot->hotplug_slot) {
                dbg("%s - slot->hotplug_slot == NULL!", function);
                return -1;
index 08be8c1..4161da4 100644 (file)
@@ -137,7 +137,6 @@ static int init_slots(struct controller *ctrl)
                hotplug_slot->name = name;
 
                slot->hp_slot = i;
-               slot->magic = SLOT_MAGIC;
                slot->ctrl = ctrl;
                slot->bus = ctrl->slot_bus;
                slot->device = ctrl->slot_device_offset + i;