Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1355757
| From | Parth Sane <laerdevstudios@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] staging: netlogic: removed 1 multiple assignment checkpatch warning |
| Date | 2016-03-11 10:20 +0100 |
| Message-ID | <rbroK-3VO-33@gated-at.bofh.it> (permalink) |
| References | <rbroK-3VO-23@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
[Multipart message — attachments visible in raw view] - view raw
Hi, I forgot to add the signed off part in the patch please ignore the previous patches I have sent. Please bear with a kernel newbie. Regards, Parth Sane > On 11-Mar-2016, at 2:45 PM, laerdevstudios@gmail.com wrote: > > From: Parth Sane <laerdevstudios@gmail.com> > > diff --git a/drivers/staging/netlogic/platform_net.c b/drivers/staging/netlogic/platform_net.c > index 7806c2b..daee1b2 100644 > --- a/drivers/staging/netlogic/platform_net.c > +++ b/drivers/staging/netlogic/platform_net.c > @@ -86,7 +86,8 @@ static void xlr_resource_init(struct resource *res, int offset, int irq) > > res++; > res->name = "gmac"; > - res->start = res->end = irq; > + res->end = irq; > + res->start = res->end; > res->flags = IORESOURCE_IRQ; > } > > -- > 2.1.4 >
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH] staging: netlogic: removed 1 multiple assignment checkpatch warning laerdevstudios@gmail.com - 2016-03-11 10:20 +0100 Re: [PATCH] staging: netlogic: removed 1 multiple assignment checkpatch warning Parth Sane <laerdevstudios@gmail.com> - 2016-03-11 10:20 +0100
csiph-web