Commit 43457c60 authored by Artem Bityutskiy's avatar Artem Bityutskiy

UBIFS: use __aligned() attribute

.. instead of __attribute__((aligned())).
Signed-off-by: default avatarArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
parent e2441b43
...@@ -514,7 +514,7 @@ struct idx_node { ...@@ -514,7 +514,7 @@ struct idx_node {
struct list_head list; struct list_head list;
int iip; int iip;
union ubifs_key upper_key; union ubifs_key upper_key;
struct ubifs_idx_node idx __attribute__((aligned(8))); struct ubifs_idx_node idx __aligned(8);
}; };
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment