Skip to content

Commit

Permalink
UBIFS: use __aligned() attribute
Browse files Browse the repository at this point in the history
.. instead of __attribute__((aligned())).

Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
  • Loading branch information
Artem Bityutskiy committed Aug 31, 2012
1 parent e2441b4 commit 43457c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/ubifs/commit.c
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ struct idx_node {
struct list_head list;
int iip;
union ubifs_key upper_key;
struct ubifs_idx_node idx __attribute__((aligned(8)));
struct ubifs_idx_node idx __aligned(8);
};

/**
Expand Down

0 comments on commit 43457c6

Please sign in to comment.