Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

include/linux: trivial repair whitespace damage

Adding tabs where spaces currently are.

Signed-off-by: Daniel Walker <dwalker@mvista.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Daniel Walker and committed by
Linus Torvalds
78db2ad6 07002e99

+6 -6
+2 -2
include/linux/kernel.h
··· 310 310 * 311 311 */ 312 312 #define container_of(ptr, type, member) ({ \ 313 - const typeof( ((type *)0)->member ) *__mptr = (ptr); \ 314 - (type *)( (char *)__mptr - offsetof(type,member) );}) 313 + const typeof( ((type *)0)->member ) *__mptr = (ptr); \ 314 + (type *)( (char *)__mptr - offsetof(type,member) );}) 315 315 316 316 /* 317 317 * Check at compile time that something is of a particular type.
+4 -4
include/linux/list.h
··· 264 264 */ 265 265 static inline void list_move(struct list_head *list, struct list_head *head) 266 266 { 267 - __list_del(list->prev, list->next); 268 - list_add(list, head); 267 + __list_del(list->prev, list->next); 268 + list_add(list, head); 269 269 } 270 270 271 271 /** ··· 276 276 static inline void list_move_tail(struct list_head *list, 277 277 struct list_head *head) 278 278 { 279 - __list_del(list->prev, list->next); 280 - list_add_tail(list, head); 279 + __list_del(list->prev, list->next); 280 + list_add_tail(list, head); 281 281 } 282 282 283 283 /**