diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-05-06 17:51:41 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-07 15:13:03 -0400 |
commit | dc764e5087bceeb26714bb7975b711062b39d804 (patch) | |
tree | f777ee4533f398754e9779f9d2505387eb074307 /arch/um/drivers/cow_sys.h | |
parent | fda83a99b2b49016b9d7ed562745969db25c4ef9 (diff) |
uml: formatting fixes around os_{read_write}_file callers
Formatting fixes ahead of renaming os_{read_write}_file_k to
os_{read_write}_file and fixing all the callers.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/drivers/cow_sys.h')
-rw-r--r-- | arch/um/drivers/cow_sys.h | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/arch/um/drivers/cow_sys.h b/arch/um/drivers/cow_sys.h index 3255583eccba..aa7bef9c38d9 100644 --- a/arch/um/drivers/cow_sys.h +++ b/arch/um/drivers/cow_sys.h | |||
@@ -8,7 +8,7 @@ | |||
8 | 8 | ||
9 | static inline void *cow_malloc(int size) | 9 | static inline void *cow_malloc(int size) |
10 | { | 10 | { |
11 | return(um_kmalloc(size)); | 11 | return um_kmalloc(size); |
12 | } | 12 | } |
13 | 13 | ||
14 | static inline void cow_free(void *ptr) | 14 | static inline void cow_free(void *ptr) |
@@ -20,29 +20,22 @@ static inline void cow_free(void *ptr) | |||
20 | 20 | ||
21 | static inline char *cow_strdup(char *str) | 21 | static inline char *cow_strdup(char *str) |
22 | { | 22 | { |
23 | return(uml_strdup(str)); | 23 | return uml_strdup(str); |
24 | } | 24 | } |
25 | 25 | ||
26 | static inline int cow_seek_file(int fd, __u64 offset) | 26 | static inline int cow_seek_file(int fd, __u64 offset) |
27 | { | 27 | { |
28 | return(os_seek_file(fd, offset)); | 28 | return os_seek_file(fd, offset); |
29 | } | 29 | } |
30 | 30 | ||
31 | static inline int cow_file_size(char *file, unsigned long long *size_out) | 31 | static inline int cow_file_size(char *file, unsigned long long *size_out) |
32 | { | 32 | { |
33 | return(os_file_size(file, size_out)); | 33 | return os_file_size(file, size_out); |
34 | } | 34 | } |
35 | 35 | ||
36 | static inline int cow_write_file(int fd, void *buf, int size) | 36 | static inline int cow_write_file(int fd, void *buf, int size) |
37 | { | 37 | { |
38 | return(os_write_file_k(fd, buf, size)); | 38 | return os_write_file_k(fd, buf, size); |
39 | } | 39 | } |
40 | 40 | ||
41 | #endif | 41 | #endif |
42 | |||
43 | /* | ||
44 | * --------------------------------------------------------------------------- | ||
45 | * Local variables: | ||
46 | * c-file-style: "linux" | ||
47 | * End: | ||
48 | */ | ||