I too submitted a patch for it in the older mailing list last month. Navya On Thursday, February 19, 2015 at 10:20:23 PM UTC+5:30, Julia Lawall wrote: > > On Thu, 19 Feb 2015, aybuke ozdemir wrote: > > > This fixes the following checkpatch.pl warnings in emxx_udc.h file: > > WARNING: __aligned(size) is preferred over > __attribute__((aligned(size))) > > This was done already by Vatika Harlalka. You can see what has been done > in the mailing list archives. > > julia > > > Signed-off-by: aybuke ozdemir > > > --- > > drivers/staging/emxx_udc/emxx_udc.h | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/drivers/staging/emxx_udc/emxx_udc.h > b/drivers/staging/emxx_udc/emxx_udc.h > > index ee1b80d..2ac216f 100644 > > --- a/drivers/staging/emxx_udc/emxx_udc.h > > +++ b/drivers/staging/emxx_udc/emxx_udc.h > > @@ -535,7 +535,7 @@ typedef struct _T_FC_REGS { > > > > u8 Reserved1200[0x1000-0x200]; /* Reserved */ > > > > -} __attribute__ ((aligned(32))) T_FC_REGS, *PT_FC_REGS; > > +} __aligned(32) T_FC_REGS, *PT_FC_REGS; > > > > > > > > -- > > 1.9.1 > > > > -- > > You received this message because you are subscribed to the Google > Groups "outreachy-kernel" group. > > To unsubscribe from this group and stop receiving emails from it, send > an email to outreachy-kern...@googlegroups.com . > > To post to this group, send email to outreach...@googlegroups.com > . > > To view this discussion on the web visit > https://groups.google.com/d/msgid/outreachy-kernel/1424364343-3944-1-git-send-email-aybuke.147%40gmail.com. > > > For more options, visit https://groups.google.com/d/optout. > > >