Lines Matching refs:cc
18 u8 cc; in __mpcifc() local
24 : [cc] "=d" (cc), [req] "+d" (req), [fib] "+Q" (*fib) in __mpcifc()
27 return cc; in __mpcifc()
32 u8 cc, status; in zpci_mod_fc() local
35 cc = __mpcifc(req, fib, &status); in zpci_mod_fc()
36 if (cc == 2) in zpci_mod_fc()
38 } while (cc == 2); in zpci_mod_fc()
40 if (cc) in zpci_mod_fc()
42 __func__, cc, status); in zpci_mod_fc()
43 return (cc) ? -EIO : 0; in zpci_mod_fc()
51 u8 cc; in __rpcit() local
57 : [cc] "=d" (cc), [fn] "+d" (fn) in __rpcit()
61 return cc; in __rpcit()
66 u8 cc, status; in zpci_refresh_trans() local
69 cc = __rpcit(fn, addr, range, &status); in zpci_refresh_trans()
70 if (cc == 2) in zpci_refresh_trans()
72 } while (cc == 2); in zpci_refresh_trans()
74 if (cc) in zpci_refresh_trans()
76 __func__, cc, status, addr, range); in zpci_refresh_trans()
77 return (cc) ? -EIO : 0; in zpci_refresh_trans()
93 int cc = -ENXIO; in __pcilg() local
102 : [cc] "+d" (cc), [data] "=d" (__data), [req] "+d" (__req) in __pcilg()
106 if (!cc) in __pcilg()
109 return cc; in __pcilg()
115 int cc; in zpci_load() local
118 cc = __pcilg(data, req, offset, &status); in zpci_load()
119 if (cc == 2) in zpci_load()
121 } while (cc == 2); in zpci_load()
123 if (cc) in zpci_load()
125 __func__, cc, status, req, offset); in zpci_load()
126 return (cc > 0) ? -EIO : cc; in zpci_load()
135 int cc = -ENXIO; in __pcistg() local
143 : [cc] "+d" (cc), [req] "+d" (__req) in __pcistg()
147 return cc; in __pcistg()
153 int cc; in zpci_store() local
156 cc = __pcistg(data, req, offset, &status); in zpci_store()
157 if (cc == 2) in zpci_store()
159 } while (cc == 2); in zpci_store()
161 if (cc) in zpci_store()
163 __func__, cc, status, req, offset); in zpci_store()
164 return (cc > 0) ? -EIO : cc; in zpci_store()
171 int cc = -ENXIO; in __pcistb() local
179 : [cc] "+d" (cc), [req] "+d" (req) in __pcistb()
183 return cc; in __pcistb()
189 int cc; in zpci_store_block() local
192 cc = __pcistb(data, req, offset, &status); in zpci_store_block()
193 if (cc == 2) in zpci_store_block()
195 } while (cc == 2); in zpci_store_block()
197 if (cc) in zpci_store_block()
199 __func__, cc, status, req, offset); in zpci_store_block()
200 return (cc > 0) ? -EIO : cc; in zpci_store_block()