mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 1/3]arch:powerpc:sysdev:mpic.c Remove extra semicolon.
@ 2011-11-21 16:43 Justin P. Mattock
  2011-11-21 16:43 ` [PATCH 2/3]drivers:staging:gma500:power.c " Justin P. Mattock
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Justin P. Mattock @ 2011-11-21 16:43 UTC (permalink / raw)
  To: trivial; +Cc: linux-kernel, Justin P. Mattock, linuxppc-dev, Paul Mackerras

From: "Justin P. Mattock" <justinmattock@gmail.com>

The patch below removes an extra semicolon.

Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
CC: linuxppc-dev@lists.ozlabs.org
CC: Paul Mackerras <paulus@samba.org>
---
 arch/powerpc/sysdev/mpic.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/powerpc/sysdev/mpic.c b/arch/powerpc/sysdev/mpic.c
index 8c7e852..b3fa3d7 100644
--- a/arch/powerpc/sysdev/mpic.c
+++ b/arch/powerpc/sysdev/mpic.c
@@ -901,7 +901,7 @@ int mpic_set_irq_type(struct irq_data *d, unsigned int flow_type)
 	if (vold != vnew)
 		mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI), vnew);
 
-	return IRQ_SET_MASK_OK_NOCOPY;;
+	return IRQ_SET_MASK_OK_NOCOPY;
 }
 
 void mpic_set_vector(unsigned int virq, unsigned int vector)
-- 
1.7.5.4


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 2/3]drivers:staging:gma500:power.c Remove extra semicolon.
  2011-11-21 16:43 [PATCH 1/3]arch:powerpc:sysdev:mpic.c Remove extra semicolon Justin P. Mattock
@ 2011-11-21 16:43 ` Justin P. Mattock
  2011-11-21 16:43 ` [PATCH 3/3]fs:btrfs:free-space-cache.c " Justin P. Mattock
  2011-12-15 17:11 ` [PATCH 1/3]arch:powerpc:sysdev:mpic.c " Justin P. Mattock
  2 siblings, 0 replies; 5+ messages in thread
From: Justin P. Mattock @ 2011-11-21 16:43 UTC (permalink / raw)
  To: trivial; +Cc: linux-kernel, Justin P. Mattock, Greg Kroah-Hartman, devel

From: "Justin P. Mattock" <justinmattock@gmail.com>

The patch below removes an extra semicolon.

Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
CC: Greg Kroah-Hartman <gregkh@suse.de>
CC: devel@driverdev.osuosl.org

---
 drivers/staging/gma500/power.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/gma500/power.c b/drivers/staging/gma500/power.c
index 436fe97..441ee98 100644
--- a/drivers/staging/gma500/power.c
+++ b/drivers/staging/gma500/power.c
@@ -304,7 +304,7 @@ int psb_runtime_suspend(struct device *dev)
 
 int psb_runtime_resume(struct device *dev)
 {
-	return gma_power_resume(dev);;
+	return gma_power_resume(dev);
 }
 
 int psb_runtime_idle(struct device *dev)
-- 
1.7.5.4


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 3/3]fs:btrfs:free-space-cache.c Remove extra semicolon.
  2011-11-21 16:43 [PATCH 1/3]arch:powerpc:sysdev:mpic.c Remove extra semicolon Justin P. Mattock
  2011-11-21 16:43 ` [PATCH 2/3]drivers:staging:gma500:power.c " Justin P. Mattock
@ 2011-11-21 16:43 ` Justin P. Mattock
  2011-12-15 17:11 ` [PATCH 1/3]arch:powerpc:sysdev:mpic.c " Justin P. Mattock
  2 siblings, 0 replies; 5+ messages in thread
From: Justin P. Mattock @ 2011-11-21 16:43 UTC (permalink / raw)
  To: trivial; +Cc: linux-kernel, Justin P. Mattock, Chris Mason, linux-btrfs

From: "Justin P. Mattock" <justinmattock@gmail.com>

The patch below removes an extra semicolon. 
Note: I have not compile tested this patch, so am unsure if this breaks things.

Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
CC: Chris Mason <chris.mason@oracle.com>
CC: linux-btrfs@vger.kernel.org

---
 fs/btrfs/free-space-cache.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/btrfs/free-space-cache.c b/fs/btrfs/free-space-cache.c
index 181760f..75a7b11 100644
--- a/fs/btrfs/free-space-cache.c
+++ b/fs/btrfs/free-space-cache.c
@@ -418,7 +418,7 @@ static void io_ctl_set_crc(struct io_ctl *io_ctl, int index)
 	}
 
 	if (index == 0)
-		offset = sizeof(u32) * io_ctl->num_pages;;
+		offset = sizeof(u32) * io_ctl->num_pages;
 
 	crc = btrfs_csum_data(io_ctl->root, io_ctl->orig + offset, crc,
 			      PAGE_CACHE_SIZE - offset);
-- 
1.7.5.4


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/3]arch:powerpc:sysdev:mpic.c Remove extra semicolon.
  2011-11-21 16:43 [PATCH 1/3]arch:powerpc:sysdev:mpic.c Remove extra semicolon Justin P. Mattock
  2011-11-21 16:43 ` [PATCH 2/3]drivers:staging:gma500:power.c " Justin P. Mattock
  2011-11-21 16:43 ` [PATCH 3/3]fs:btrfs:free-space-cache.c " Justin P. Mattock
@ 2011-12-15 17:11 ` Justin P. Mattock
  2011-12-15 17:46   ` Jiri Kosina
  2 siblings, 1 reply; 5+ messages in thread
From: Justin P. Mattock @ 2011-12-15 17:11 UTC (permalink / raw)
  To: Justin P. Mattock; +Cc: trivial, linux-kernel, linuxppc-dev, Paul Mackerras

what would be the status of these? should I resend/rebase to the current 
etc?..

On 11/21/2011 08:43 AM, Justin P. Mattock wrote:
> From: "Justin P. Mattock"<justinmattock@gmail.com>
>
> The patch below removes an extra semicolon.
>
> Signed-off-by: Justin P. Mattock<justinmattock@gmail.com>
> CC: linuxppc-dev@lists.ozlabs.org
> CC: Paul Mackerras<paulus@samba.org>
> ---
>   arch/powerpc/sysdev/mpic.c |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/arch/powerpc/sysdev/mpic.c b/arch/powerpc/sysdev/mpic.c
> index 8c7e852..b3fa3d7 100644
> --- a/arch/powerpc/sysdev/mpic.c
> +++ b/arch/powerpc/sysdev/mpic.c
> @@ -901,7 +901,7 @@ int mpic_set_irq_type(struct irq_data *d, unsigned int flow_type)
>   	if (vold != vnew)
>   		mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI), vnew);
>
> -	return IRQ_SET_MASK_OK_NOCOPY;;
> +	return IRQ_SET_MASK_OK_NOCOPY;
>   }
>
>   void mpic_set_vector(unsigned int virq, unsigned int vector)


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/3]arch:powerpc:sysdev:mpic.c Remove extra semicolon.
  2011-12-15 17:11 ` [PATCH 1/3]arch:powerpc:sysdev:mpic.c " Justin P. Mattock
@ 2011-12-15 17:46   ` Jiri Kosina
  0 siblings, 0 replies; 5+ messages in thread
From: Jiri Kosina @ 2011-12-15 17:46 UTC (permalink / raw)
  To: Justin P. Mattock; +Cc: linux-kernel, linuxppc-dev, Paul Mackerras

On Thu, 15 Dec 2011, Justin P. Mattock wrote:

> what would be the status of these? should I resend/rebase to the current
> etc?..

Check linux-next, it's already there.

> 
> On 11/21/2011 08:43 AM, Justin P. Mattock wrote:
> > From: "Justin P. Mattock"<justinmattock@gmail.com>
> > 
> > The patch below removes an extra semicolon.
> > 
> > Signed-off-by: Justin P. Mattock<justinmattock@gmail.com>
> > CC: linuxppc-dev@lists.ozlabs.org
> > CC: Paul Mackerras<paulus@samba.org>
> > ---
> >   arch/powerpc/sysdev/mpic.c |    2 +-
> >   1 files changed, 1 insertions(+), 1 deletions(-)
> > 
> > diff --git a/arch/powerpc/sysdev/mpic.c b/arch/powerpc/sysdev/mpic.c
> > index 8c7e852..b3fa3d7 100644
> > --- a/arch/powerpc/sysdev/mpic.c
> > +++ b/arch/powerpc/sysdev/mpic.c
> > @@ -901,7 +901,7 @@ int mpic_set_irq_type(struct irq_data *d, unsigned int
> > flow_type)
> >   	if (vold != vnew)
> >   		mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI), vnew);
> > 
> > -	return IRQ_SET_MASK_OK_NOCOPY;;
> > +	return IRQ_SET_MASK_OK_NOCOPY;
> >   }
> > 
> >   void mpic_set_vector(unsigned int virq, unsigned int vector)
> 

-- 
Jiri Kosina
SUSE Labs

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-12-15 17:46 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-11-21 16:43 [PATCH 1/3]arch:powerpc:sysdev:mpic.c Remove extra semicolon Justin P. Mattock
2011-11-21 16:43 ` [PATCH 2/3]drivers:staging:gma500:power.c " Justin P. Mattock
2011-11-21 16:43 ` [PATCH 3/3]fs:btrfs:free-space-cache.c " Justin P. Mattock
2011-12-15 17:11 ` [PATCH 1/3]arch:powerpc:sysdev:mpic.c " Justin P. Mattock
2011-12-15 17:46   ` Jiri Kosina

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®