All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] skd: fix assert typo
@ 2016-08-30 10:26 Eric Engestrom
  2016-09-12 17:43 ` Jeff Moyer
  0 siblings, 1 reply; 6+ messages in thread
From: Eric Engestrom @ 2016-08-30 10:26 UTC (permalink / raw)
  To: linux-kernel
  Cc: Eric Engestrom, Jens Axboe, Ming Lin, Johannes Thumshirn,
	Jeff Moyer, Hannes Reinecke, Mike Christie, Dan Williams

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

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-09-16 13:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-30 10:26 [PATCH] skd: fix assert typo Eric Engestrom
2016-09-12 17:43 ` Jeff Moyer
2016-09-16  9:31   ` [PATCH v2] " Eric Engestrom
2016-09-16 11:59     ` Johannes Thumshirn
2016-09-16 12:40     ` Jeff Moyer
2016-09-16 13:06       ` Eric Engestrom

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.