All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel]  [PATCH] pci: fix identation
@ 2016-03-28  7:32 Marcel Apfelbaum
  2016-03-29 10:17 ` Igor Mammedov
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Marcel Apfelbaum @ 2016-03-28  7:32 UTC (permalink / raw)
  To: qemu-devel; +Cc: marcel, qemu-trivial, mst

Signed-off-by: Marcel Apfelbaum <marcel@redhat.com>
---
 hw/pci/pci.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/hw/pci/pci.c b/hw/pci/pci.c
index a1d41aa..da8b0b6 100644
--- a/hw/pci/pci.c
+++ b/hw/pci/pci.c
@@ -165,15 +165,15 @@ static inline int pci_irq_state(PCIDevice *d, int irq_num)
 {
     assert(irq_num >= 0);
 
-	return (d->irq_state >> irq_num) & 0x1;
+    return (d->irq_state >> irq_num) & 0x1;
 }
 
 static inline void pci_set_irq_state(PCIDevice *d, int irq_num, int level)
 {
     assert(irq_num >= 0);
 
-	d->irq_state &= ~(0x1 << irq_num);
-	d->irq_state |= level << irq_num;
+    d->irq_state &= ~(0x1 << irq_num);
+    d->irq_state |= level << irq_num;
 }
 
 static void pci_change_irq_level(PCIDevice *pci_dev, int irq_num, int change)
-- 
2.4.3

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

* Re: [Qemu-devel] [PATCH] pci: fix identation
  2016-03-28  7:32 [Qemu-devel] [PATCH] pci: fix identation Marcel Apfelbaum
@ 2016-03-29 10:17 ` Igor Mammedov
  2016-04-10  8:29 ` [Qemu-devel] [Qemu-trivial] " Marcel Apfelbaum
  2016-05-29  7:23 ` [Qemu-devel] " Michael Tokarev
  2 siblings, 0 replies; 4+ messages in thread
From: Igor Mammedov @ 2016-03-29 10:17 UTC (permalink / raw)
  To: Marcel Apfelbaum; +Cc: qemu-trivial, qemu-devel, mst

On Mon, 28 Mar 2016 10:32:45 +0300
Marcel Apfelbaum <marcel@redhat.com> wrote:

> Signed-off-by: Marcel Apfelbaum <marcel@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>

> ---
>  hw/pci/pci.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/hw/pci/pci.c b/hw/pci/pci.c
> index a1d41aa..da8b0b6 100644
> --- a/hw/pci/pci.c
> +++ b/hw/pci/pci.c
> @@ -165,15 +165,15 @@ static inline int pci_irq_state(PCIDevice *d, int irq_num)
>  {
>      assert(irq_num >= 0);
>  
> -	return (d->irq_state >> irq_num) & 0x1;
> +    return (d->irq_state >> irq_num) & 0x1;
>  }
>  
>  static inline void pci_set_irq_state(PCIDevice *d, int irq_num, int level)
>  {
>      assert(irq_num >= 0);
>  
> -	d->irq_state &= ~(0x1 << irq_num);
> -	d->irq_state |= level << irq_num;
> +    d->irq_state &= ~(0x1 << irq_num);
> +    d->irq_state |= level << irq_num;
>  }
>  
>  static void pci_change_irq_level(PCIDevice *pci_dev, int irq_num, int change)

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

* Re: [Qemu-devel] [Qemu-trivial]  [PATCH] pci: fix identation
  2016-03-28  7:32 [Qemu-devel] [PATCH] pci: fix identation Marcel Apfelbaum
  2016-03-29 10:17 ` Igor Mammedov
@ 2016-04-10  8:29 ` Marcel Apfelbaum
  2016-05-29  7:23 ` [Qemu-devel] " Michael Tokarev
  2 siblings, 0 replies; 4+ messages in thread
From: Marcel Apfelbaum @ 2016-04-10  8:29 UTC (permalink / raw)
  To: Marcel Apfelbaum, qemu-devel; +Cc: qemu-trivial, mst

On 03/28/2016 10:32 AM, Marcel Apfelbaum wrote:
> Signed-off-by: Marcel Apfelbaum <marcel@redhat.com>

Ping.

Thanks,
Marcel

> ---
>   hw/pci/pci.c | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/hw/pci/pci.c b/hw/pci/pci.c
> index a1d41aa..da8b0b6 100644
> --- a/hw/pci/pci.c
> +++ b/hw/pci/pci.c
> @@ -165,15 +165,15 @@ static inline int pci_irq_state(PCIDevice *d, int irq_num)
>   {
>       assert(irq_num >= 0);
>
> -	return (d->irq_state >> irq_num) & 0x1;
> +    return (d->irq_state >> irq_num) & 0x1;
>   }
>
>   static inline void pci_set_irq_state(PCIDevice *d, int irq_num, int level)
>   {
>       assert(irq_num >= 0);
>
> -	d->irq_state &= ~(0x1 << irq_num);
> -	d->irq_state |= level << irq_num;
> +    d->irq_state &= ~(0x1 << irq_num);
> +    d->irq_state |= level << irq_num;
>   }
>
>   static void pci_change_irq_level(PCIDevice *pci_dev, int irq_num, int change)
>

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

* Re: [Qemu-devel] [PATCH] pci: fix identation
  2016-03-28  7:32 [Qemu-devel] [PATCH] pci: fix identation Marcel Apfelbaum
  2016-03-29 10:17 ` Igor Mammedov
  2016-04-10  8:29 ` [Qemu-devel] [Qemu-trivial] " Marcel Apfelbaum
@ 2016-05-29  7:23 ` Michael Tokarev
  2 siblings, 0 replies; 4+ messages in thread
From: Michael Tokarev @ 2016-05-29  7:23 UTC (permalink / raw)
  To: Marcel Apfelbaum, qemu-devel; +Cc: qemu-trivial, mst

Applied to -trivial.

Please don't bother sending identation-fixing-only patches :)

Thanks,

/mjt

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

end of thread, other threads:[~2016-05-29  7:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-28  7:32 [Qemu-devel] [PATCH] pci: fix identation Marcel Apfelbaum
2016-03-29 10:17 ` Igor Mammedov
2016-04-10  8:29 ` [Qemu-devel] [Qemu-trivial] " Marcel Apfelbaum
2016-05-29  7:23 ` [Qemu-devel] " Michael Tokarev

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.