Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 13515
b: refs/heads/master
c: 6fb93a9
h: refs/heads/master
i:
  13513: fae0e5d
  13511: 4f828a7
v: v3
  • Loading branch information
Mark Maule authored and Tony Luck committed Nov 8, 2005
1 parent 37f3296 commit 897baa7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cbb921443424fb8019e52bae83e442d01f7715ef
refs/heads/master: 6fb93a92ec2a012fa525499c330522bbb8c18d80
4 changes: 2 additions & 2 deletions trunk/arch/ia64/sn/pci/pcibr/pcibr_provider.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,13 +212,13 @@ void pcibr_target_interrupt(struct sn_irq_info *sn_irq_info)
pdi_pcibus_info;

/* Disable the device's IRQ */
pcireg_intr_enable_bit_clr(pcibus_info, bit);
pcireg_intr_enable_bit_clr(pcibus_info, (1 << bit));

/* Change the device's IRQ */
pcireg_intr_addr_addr_set(pcibus_info, bit, xtalk_addr);

/* Re-enable the device's IRQ */
pcireg_intr_enable_bit_set(pcibus_info, bit);
pcireg_intr_enable_bit_set(pcibus_info, (1 << bit));

pcibr_force_interrupt(sn_irq_info);
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/ia64/sn/pci/pcibr/pcibr_reg.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ void pcireg_intr_enable_bit_clr(struct pcibus_info *pcibus_info, uint64_t bits)
__sn_clrq_relaxed(&ptr->tio.cp_int_enable, bits);
break;
case PCIBR_BRIDGETYPE_PIC:
__sn_clrq_relaxed(&ptr->pic.p_int_enable, ~bits);
__sn_clrq_relaxed(&ptr->pic.p_int_enable, bits);
break;
default:
panic
Expand Down

0 comments on commit 897baa7

Please sign in to comment.