From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60279) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1akqic-0006e8-6Y for qemu-devel@nongnu.org; Tue, 29 Mar 2016 06:17:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1akqiW-0005Zs-9h for qemu-devel@nongnu.org; Tue, 29 Mar 2016 06:17:50 -0400 Date: Tue, 29 Mar 2016 12:17:38 +0200 From: Igor Mammedov Message-ID: <20160329121738.4dd0772e@nial.brq.redhat.com> In-Reply-To: <1459150365-26233-1-git-send-email-marcel@redhat.com> References: <1459150365-26233-1-git-send-email-marcel@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] pci: fix identation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Marcel Apfelbaum Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org, mst@redhat.com On Mon, 28 Mar 2016 10:32:45 +0300 Marcel Apfelbaum wrote: > Signed-off-by: Marcel Apfelbaum Reviewed-by: Igor Mammedov > --- > 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)