From 01153e7d5f0b8d4edb0306c2a27030d2757235f4 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Tue, 9 Dec 2014 17:10:42 +0000 Subject: [PATCH] drv_hangman: Remove unused function Signed-off-by: Damien Lespiau --- tests/drv_hangman.c | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/tests/drv_hangman.c b/tests/drv_hangman.c index ec28c9d8..15918ba6 100644 --- a/tests/drv_hangman.c +++ b/tests/drv_hangman.c @@ -150,19 +150,6 @@ static void assert_error_state_collected(void) assert_dfs_entry_not("i915_error_state", "no error state collected"); } -static int get_line_count(const char *s) -{ - int count = 0; - - while (*s) { - if (*s == '\n') - count++; - s++; - } - - return count; -} - #define MAGIC_NUMBER 0x10001 const uint32_t batch[] = { MI_NOOP, MI_BATCH_BUFFER_END,