Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fc624eae authored by Mike Frysinger's avatar Mike Frysinger Committed by Paul Mackerras
Browse files

[POWERPC] Use __attribute__ in asm-powerpc



Pretty much everyone uses "__attribute__" or "attribute", no one uses
"__attribute".  This tweaks the three places in asm-powerpc where this
comes up.  While only asm-powerpc/types.h is interesting (for
userspace), I did asm-powerpc/processor.h as well for consistency.

Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 9b41fcb0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -145,9 +145,9 @@ struct thread_struct {
	unsigned long	dabr;		/* Data address breakpoint register */
#ifdef CONFIG_ALTIVEC
	/* Complete AltiVec register set */
	vector128	vr[32] __attribute((aligned(16)));
	vector128	vr[32] __attribute__((aligned(16)));
	/* AltiVec status */
	vector128	vscr __attribute((aligned(16)));
	vector128	vscr __attribute__((aligned(16)));
	unsigned long	vrsave;
	int		used_vr;	/* set if process has used altivec */
#endif /* CONFIG_ALTIVEC */
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ typedef unsigned long long __u64;

typedef struct {
	__u32 u[4];
} __attribute((aligned(16))) __vector128;
} __attribute__((aligned(16))) __vector128;

#endif /* __ASSEMBLY__ */