]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
kunit: remove unused structure definition
authorYoungJun.park <her0gyugyu@gmail.com>
Tue, 25 Oct 2022 01:59:46 +0000 (18:59 -0700)
committerShuah Khan <skhan@linuxfoundation.org>
Thu, 27 Oct 2022 08:46:17 +0000 (02:46 -0600)
remove unused string_stream_alloc_context structure definition.

Signed-off-by: YoungJun.park <her0gyugyu@gmail.com>
Reviewed-by: David Gow <davidgow@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
lib/kunit/string-stream.c

index f5ae79c374003ebcb58cef9a3fc2c2b62320717b..72659a9773e3b34f38528328b91dc6dfb0883b3a 100644 (file)
@@ -131,11 +131,6 @@ bool string_stream_is_empty(struct string_stream *stream)
        return list_empty(&stream->fragments);
 }
 
-struct string_stream_alloc_context {
-       struct kunit *test;
-       gfp_t gfp;
-};
-
 struct string_stream *alloc_string_stream(struct kunit *test, gfp_t gfp)
 {
        struct string_stream *stream;