diff options
author | Ian Munsie <imunsie@au1.ibm.com> | 2012-11-08 00:10:29 -0500 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2012-11-14 23:08:07 -0500 |
commit | cca55d9ddf6d431114ab9f7cad3e761b74255c9c (patch) | |
tree | 5c831e4a5071febb7a4e3e52f6c812de71ba612d /drivers/infiniband | |
parent | 798042da4e039ef551ff6e1b1ead50a763181daa (diff) |
powerpc: Move get_longbusy_msecs into hvcall.h and remove duplicate function
I am going to use this in the next patch, better to have this code in
one place rather than three.
Signed-off-by: Ian Munsie <imunsie@au1.ibm.com>
Signed-off-by: Michael Neuling <mikey@neuling.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/hw/ehca/hcp_if.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/drivers/infiniband/hw/ehca/hcp_if.c b/drivers/infiniband/hw/ehca/hcp_if.c index 2d41d04fd95..89517ffb438 100644 --- a/drivers/infiniband/hw/ehca/hcp_if.c +++ b/drivers/infiniband/hw/ehca/hcp_if.c | |||
@@ -90,26 +90,6 @@ | |||
90 | 90 | ||
91 | static DEFINE_SPINLOCK(hcall_lock); | 91 | static DEFINE_SPINLOCK(hcall_lock); |
92 | 92 | ||
93 | static u32 get_longbusy_msecs(int longbusy_rc) | ||
94 | { | ||
95 | switch (longbusy_rc) { | ||
96 | case H_LONG_BUSY_ORDER_1_MSEC: | ||
97 | return 1; | ||
98 | case H_LONG_BUSY_ORDER_10_MSEC: | ||
99 | return 10; | ||
100 | case H_LONG_BUSY_ORDER_100_MSEC: | ||
101 | return 100; | ||
102 | case H_LONG_BUSY_ORDER_1_SEC: | ||
103 | return 1000; | ||
104 | case H_LONG_BUSY_ORDER_10_SEC: | ||
105 | return 10000; | ||
106 | case H_LONG_BUSY_ORDER_100_SEC: | ||
107 | return 100000; | ||
108 | default: | ||
109 | return 1; | ||
110 | } | ||
111 | } | ||
112 | |||
113 | static long ehca_plpar_hcall_norets(unsigned long opcode, | 93 | static long ehca_plpar_hcall_norets(unsigned long opcode, |
114 | unsigned long arg1, | 94 | unsigned long arg1, |
115 | unsigned long arg2, | 95 | unsigned long arg2, |