Skip to content

Commit

Permalink
Merge pull request #235 from mechanicalamit/atomic-patches
Browse files Browse the repository at this point in the history
Add newline to last pr_info to force dmesg to flush
  • Loading branch information
jserv committed Sep 28, 2023
2 parents 7f88a37 + e56fc58 commit 866eba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/example_atomic.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ static void atomic_bitwise(void)
pr_info("Bits 4: " BYTE_TO_BINARY_PATTERN, BYTE_TO_BINARY(word));

word = 255;
pr_info("Bits 5: " BYTE_TO_BINARY_PATTERN, BYTE_TO_BINARY(word));
pr_info("Bits 5: " BYTE_TO_BINARY_PATTERN "\n", BYTE_TO_BINARY(word));
}

static int __init example_atomic_init(void)
Expand Down

0 comments on commit 866eba0

Please sign in to comment.