Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 343413
b: refs/heads/master
c: c59b9f9
h: refs/heads/master
i:
  343411: 0a1f5db
v: v3
  • Loading branch information
Jan Glauber authored and Martin Schwidefsky committed Dec 5, 2012
1 parent 83c9100 commit eaf452c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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: bafff1743f2b1bda24daba29c59f755aa2d505b7
refs/heads/master: c59b9f92653f102856ca7802af551788c143a3a3
10 changes: 5 additions & 5 deletions trunk/arch/s390/include/asm/pci_insn.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <linux/delay.h>

#define ZPCI_INSN_BUSY_DELAY 1 /* 1 millisecond */
#define ZPCI_INSN_BUSY_DELAY 1 /* 1 microsecond */

/* Load/Store status codes */
#define ZPCI_PCI_ST_FUNC_NOT_ENABLED 4
Expand Down Expand Up @@ -138,7 +138,7 @@ static inline int rpcit_instr(u64 fn, u64 addr, u64 range)
do {
cc = __rpcit(fn, addr, range, &status);
if (cc == 2)
msleep(ZPCI_INSN_BUSY_DELAY);
udelay(ZPCI_INSN_BUSY_DELAY);
} while (cc == 2);

if (cc)
Expand Down Expand Up @@ -198,7 +198,7 @@ static inline int pcilg_instr(u64 *data, u64 req, u64 offset)
do {
cc = __pcilg(data, req, offset, &status);
if (cc == 2)
msleep(ZPCI_INSN_BUSY_DELAY);
udelay(ZPCI_INSN_BUSY_DELAY);
} while (cc == 2);

if (cc) {
Expand Down Expand Up @@ -236,7 +236,7 @@ static inline int pcistg_instr(u64 data, u64 req, u64 offset)
do {
cc = __pcistg(data, req, offset, &status);
if (cc == 2)
msleep(ZPCI_INSN_BUSY_DELAY);
udelay(ZPCI_INSN_BUSY_DELAY);
} while (cc == 2);

if (cc)
Expand Down Expand Up @@ -268,7 +268,7 @@ static inline int pcistb_instr(const u64 *data, u64 req, u64 offset)
do {
cc = __pcistb(data, req, offset, &status);
if (cc == 2)
msleep(ZPCI_INSN_BUSY_DELAY);
udelay(ZPCI_INSN_BUSY_DELAY);
} while (cc == 2);

if (cc)
Expand Down

0 comments on commit eaf452c

Please sign in to comment.