diff options
Diffstat (limited to 'fs/udf/balloc.c')
-rw-r--r-- | fs/udf/balloc.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/fs/udf/balloc.c b/fs/udf/balloc.c index b9ded26b10a9..4fae57d9d115 100644 --- a/fs/udf/balloc.c +++ b/fs/udf/balloc.c | |||
@@ -4,11 +4,6 @@ | |||
4 | * PURPOSE | 4 | * PURPOSE |
5 | * Block allocation handling routines for the OSTA-UDF(tm) filesystem. | 5 | * Block allocation handling routines for the OSTA-UDF(tm) filesystem. |
6 | * | 6 | * |
7 | * CONTACTS | ||
8 | * E-mail regarding any portion of the Linux UDF file system should be | ||
9 | * directed to the development team mailing list (run by majordomo): | ||
10 | * linux_udf@hpesjro.fc.hp.com | ||
11 | * | ||
12 | * COPYRIGHT | 7 | * COPYRIGHT |
13 | * This file is distributed under the terms of the GNU General Public | 8 | * This file is distributed under the terms of the GNU General Public |
14 | * License (GPL). Copies of the GPL can be obtained from: | 9 | * License (GPL). Copies of the GPL can be obtained from: |
@@ -46,7 +41,7 @@ | |||
46 | #define uint(x) xuint(x) | 41 | #define uint(x) xuint(x) |
47 | #define xuint(x) __le ## x | 42 | #define xuint(x) __le ## x |
48 | 43 | ||
49 | extern inline int find_next_one_bit (void * addr, int size, int offset) | 44 | static inline int find_next_one_bit (void * addr, int size, int offset) |
50 | { | 45 | { |
51 | uintBPL_t * p = ((uintBPL_t *) addr) + (offset / BITS_PER_LONG); | 46 | uintBPL_t * p = ((uintBPL_t *) addr) + (offset / BITS_PER_LONG); |
52 | int result = offset & ~(BITS_PER_LONG-1); | 47 | int result = offset & ~(BITS_PER_LONG-1); |