diff options
author | Kristen Accardi <kristen.c.accardi@intel.com> | 2006-03-14 19:24:47 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-03-23 17:35:17 -0500 |
commit | dc6712d1261ee4585771724320d28580888818eb (patch) | |
tree | 14bb88b17952a540b4764653340ae30c14959b12 /drivers/pci/hotplug/ibmphp_ebda.c | |
parent | 783c49fc506d9afe4784390b556fa25ede5d6d1f (diff) |
[PATCH] ibmphp: remove TRUE and FALSE
This patch removes the defines TRUE and FALSE and just uses 0 or 1.
Signed-off-by: Kristen Carlson Accardi <kristen.c.accardi@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/pci/hotplug/ibmphp_ebda.c')
-rw-r--r-- | drivers/pci/hotplug/ibmphp_ebda.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/hotplug/ibmphp_ebda.c b/drivers/pci/hotplug/ibmphp_ebda.c index ba12034c5d3a..05e4f5a1927a 100644 --- a/drivers/pci/hotplug/ibmphp_ebda.c +++ b/drivers/pci/hotplug/ibmphp_ebda.c | |||
@@ -944,7 +944,7 @@ static int __init ebda_rsrc_controller (void) | |||
944 | goto error_no_slot; | 944 | goto error_no_slot; |
945 | } | 945 | } |
946 | 946 | ||
947 | tmp_slot->flag = TRUE; | 947 | tmp_slot->flag = 1; |
948 | 948 | ||
949 | tmp_slot->capabilities = hpc_ptr->slots[index].slot_cap; | 949 | tmp_slot->capabilities = hpc_ptr->slots[index].slot_cap; |
950 | if ((hpc_ptr->slots[index].slot_cap & EBDA_SLOT_133_MAX) == EBDA_SLOT_133_MAX) | 950 | if ((hpc_ptr->slots[index].slot_cap & EBDA_SLOT_133_MAX) == EBDA_SLOT_133_MAX) |