From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39755) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1apAkj-00020f-M7 for qemu-devel@nongnu.org; Sun, 10 Apr 2016 04:29:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1apAki-00030x-Lw for qemu-devel@nongnu.org; Sun, 10 Apr 2016 04:29:53 -0400 Reply-To: marcel@redhat.com References: <1459150365-26233-1-git-send-email-marcel@redhat.com> From: Marcel Apfelbaum Message-ID: <570A0EF6.3010307@gmail.com> Date: Sun, 10 Apr 2016 11:29:42 +0300 MIME-Version: 1.0 In-Reply-To: <1459150365-26233-1-git-send-email-marcel@redhat.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [Qemu-trivial] [PATCH] pci: fix identation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Marcel Apfelbaum , qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, mst@redhat.com On 03/28/2016 10:32 AM, Marcel Apfelbaum wrote: > Signed-off-by: Marcel Apfelbaum 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) >