Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 83422
b: refs/heads/master
c: f10db62
h: refs/heads/master
v: v3
  • Loading branch information
Herbert Xu authored and Linus Torvalds committed Feb 6, 2008
1 parent 0d6e5b7 commit df4dd24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b0940003f25dd3d2c54c4879809a432a35197f54
refs/heads/master: f10db6277dfd6dffb80b2182a256d35adb3134bc
2 changes: 1 addition & 1 deletion trunk/include/linux/kernel.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ extern const char linux_proc_banner[];
#define ALIGN(x,a) __ALIGN_MASK(x,(typeof(x))(a)-1)
#define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask))
#define PTR_ALIGN(p, a) ((typeof(p))ALIGN((unsigned long)(p), (a)))
#define IS_ALIGNED(x,a) (((x) % ((typeof(x))(a))) == 0)
#define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0)

#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))

Expand Down

0 comments on commit df4dd24

Please sign in to comment.