Skip to content

Commit 866eba0

Browse files
authored
Merge pull request #235 from mechanicalamit/atomic-patches
Add newline to last pr_info to force dmesg to flush
2 parents 7f88a37 + e56fc58 commit 866eba0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/example_atomic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ static void atomic_bitwise(void)
5050
pr_info("Bits 4: " BYTE_TO_BINARY_PATTERN, BYTE_TO_BINARY(word));
5151

5252
word = 255;
53-
pr_info("Bits 5: " BYTE_TO_BINARY_PATTERN, BYTE_TO_BINARY(word));
53+
pr_info("Bits 5: " BYTE_TO_BINARY_PATTERN "\n", BYTE_TO_BINARY(word));
5454
}
5555

5656
static int __init example_atomic_init(void)

0 commit comments

Comments
 (0)