Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1472403
| From | Eric Engestrom <eric.engestrom@imgtec.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] skd: fix assert typo |
| Date | 2016-08-30 12:40 +0200 |
| Message-ID | <sbOCt-3C0-13@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
---
drivers/block/skd_main.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/block/skd_main.c b/drivers/block/skd_main.c
index 3822eae..94a7425 100644
--- a/drivers/block/skd_main.c
+++ b/drivers/block/skd_main.c
@@ -1905,7 +1905,7 @@ static void skd_send_internal_skspcl(struct skd_device *skdev,
break;
default:
- SKD_ASSERT("Don't know what to send");
+ SKD_ASSERT(!"Don't know what to send");
return;
}
@@ -2105,7 +2105,7 @@ static void skd_complete_internal(struct skd_device *skdev,
break;
default:
- SKD_ASSERT("we didn't send this");
+ SKD_ASSERT(!"we didn't send this");
}
}
--
Cheers,
Eric
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] skd: fix assert typo Eric Engestrom <eric.engestrom@imgtec.com> - 2016-08-30 12:40 +0200
csiph-web