diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-26 11:36:35 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-26 11:36:35 -0400 |
commit | 5e71d9c5a50b92b33d35061d42ac39166db9578e (patch) | |
tree | bbf006e6e64f2d8828766f44249d6d26150ae3a4 /drivers/ide/setup-pci.c | |
parent | 7daf66dd142b1978bf8670d9d959d835de37476f (diff) |
ide: IDE_HFLAG_BOOTABLE -> IDE_HFLAG_NON_BOOTABLE
"bootable" should be the default behavior so replace
IDE_HFLAG_BOOTABLE host flag with IDE_HFLAG_NON_BOOTABLE.
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/setup-pci.c')
-rw-r--r-- | drivers/ide/setup-pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/setup-pci.c b/drivers/ide/setup-pci.c index 7347faf8bc41..8947597e6bec 100644 --- a/drivers/ide/setup-pci.c +++ b/drivers/ide/setup-pci.c | |||
@@ -320,7 +320,7 @@ static ide_hwif_t *ide_hwif_configure(struct pci_dev *dev, | |||
320 | { | 320 | { |
321 | unsigned long ctl = 0, base = 0; | 321 | unsigned long ctl = 0, base = 0; |
322 | ide_hwif_t *hwif; | 322 | ide_hwif_t *hwif; |
323 | u8 bootable = (d->host_flags & IDE_HFLAG_BOOTABLE) ? 1 : 0; | 323 | u8 bootable = (d->host_flags & IDE_HFLAG_NON_BOOTABLE) ? 0 : 1; |
324 | struct hw_regs_s hw; | 324 | struct hw_regs_s hw; |
325 | 325 | ||
326 | if ((d->host_flags & IDE_HFLAG_ISA_PORTS) == 0) { | 326 | if ((d->host_flags & IDE_HFLAG_ISA_PORTS) == 0) { |