# net/core/datagram.c
# - remove spurious spaces and tabs at end of lines # - make sure if, while, for, switch has a space before the opening '(' # - make sure no line has more than 80 chars # - move initializations to the declaration line where possible # - bitwise, logical and arithmetic operators have spaces before and after, # improving readability of complex expressions # - use named initializations in structs # - transform existing function comments into kernel-doc style # - minor size optimizations # # Sizes: # Before: # text data bss dec hex filename # 2736 0 0 2736 ab0 net/core/datagram.o # After: # 2720 0 0 2720 aa0 net/core/datagram.o
Showing
This diff is collapsed.
Please register or sign in to comment