Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 221704
b: refs/heads/master
c: 6070bf3
h: refs/heads/master
v: v3
  • Loading branch information
Tetsuo Handa authored and James Morris committed Nov 9, 2010
1 parent bb66565 commit 03d83d5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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: 0e15482566b752718e7225168380904f1d0cdfa3
refs/heads/master: 6070bf3596f3b5a54091a08d5b2bc90c143dc264
2 changes: 1 addition & 1 deletion trunk/fs/openpromfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ static int openprom_fill_super(struct super_block *s, void *data, int silent)
static struct dentry *openprom_mount(struct file_system_type *fs_type,
int flags, const char *dev_name, void *data)
{
return mount_single(fs_type, flags, data, openprom_fill_super);
return mount_single(fs_type, flags, data, openprom_fill_super)
}

static struct file_system_type openprom_fs_type = {
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/linux/kernel.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ extern const char linux_proc_banner[];
#define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
#define roundup(x, y) ( \
{ \
typeof(y) __y = y; \
const typeof(y) __y = y; \
(((x) + (__y - 1)) / __y) * __y; \
} \
)
Expand Down

0 comments on commit 03d83d5

Please sign in to comment.