diff options
author | Richard Knutsson <ricknu-0@student.ltu.se> | 2007-02-12 03:53:24 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-12 12:48:35 -0500 |
commit | 986c4bb8c4a7bf248378954782553334a003d80a (patch) | |
tree | 68d1c6dd17db1ff9c5816844c695e85a51f54506 /drivers/isdn/hardware/eicon/os_pri.c | |
parent | 2a8081f99cd2b1f356c1d07c75f5c386c2e54efc (diff) |
[PATCH] drivers/isdn/hardware/eicon/: convert to generic boolean-values
Signed-off-by: Richard Knutsson <ricknu-0@student.ltu.se>
Acked-by: Karsten Keil <kkeil@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/isdn/hardware/eicon/os_pri.c')
-rw-r--r-- | drivers/isdn/hardware/eicon/os_pri.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/isdn/hardware/eicon/os_pri.c b/drivers/isdn/hardware/eicon/os_pri.c index a296a846f296..903356547b79 100644 --- a/drivers/isdn/hardware/eicon/os_pri.c +++ b/drivers/isdn/hardware/eicon/os_pri.c | |||
@@ -487,7 +487,7 @@ diva_pri_start_adapter(PISDN_ADAPTER IoAdapter, | |||
487 | } | 487 | } |
488 | DIVA_OS_MEM_DETACH_ADDRESS(IoAdapter, boot); | 488 | DIVA_OS_MEM_DETACH_ADDRESS(IoAdapter, boot); |
489 | 489 | ||
490 | IoAdapter->Initialized = TRUE; | 490 | IoAdapter->Initialized = true; |
491 | 491 | ||
492 | /* | 492 | /* |
493 | Check Interrupt | 493 | Check Interrupt |
@@ -504,7 +504,7 @@ diva_pri_start_adapter(PISDN_ADAPTER IoAdapter, | |||
504 | if (!IoAdapter->IrqCount) { | 504 | if (!IoAdapter->IrqCount) { |
505 | DBG_ERR(("A: A(%d) interrupt test failed", | 505 | DBG_ERR(("A: A(%d) interrupt test failed", |
506 | IoAdapter->ANum)) | 506 | IoAdapter->ANum)) |
507 | IoAdapter->Initialized = FALSE; | 507 | IoAdapter->Initialized = false; |
508 | IoAdapter->stop(IoAdapter); | 508 | IoAdapter->stop(IoAdapter); |
509 | return (-1); | 509 | return (-1); |
510 | } | 510 | } |