Lines Matching refs:cc

126 	int cc;  in css_enumerate()  local
130 cc = stsch(scn | SCHID_ONE, &schib); in css_enumerate()
131 switch (cc) { in css_enumerate()
138 cc, scn | SCHID_ONE); in css_enumerate()
139 return cc; in css_enumerate()
174 int cc; in css_enabled() local
176 cc = stsch(schid, &schib); in css_enabled()
177 if (cc) { in css_enabled()
179 schid, cc); in css_enabled()
203 int cc; in css_enable() local
206 cc = stsch(schid, &schib); in css_enable()
207 if (cc) { in css_enable()
208 report_info("stsch: sch %08x failed with cc=%d", schid, cc); in css_enable()
209 return cc; in css_enable()
224 cc = msch(schid, &schib); in css_enable()
225 if (cc) { in css_enable()
231 report_info("msch: sch %08x failed with cc=%d", schid, cc); in css_enable()
232 return cc; in css_enable()
265 int cc; in schib_update_mb() local
268 cc = stsch(schid, &schib); in schib_update_mb()
269 if (cc) { in schib_update_mb()
270 report_info("stsch: sch %08x failed with cc=%d", schid, cc); in schib_update_mb()
290 cc = msch(schid, &schib); in schib_update_mb()
291 if (cc) { in schib_update_mb()
297 report_info("msch: sch %08x failed with cc=%d", schid, cc); in schib_update_mb()
304 cc = stsch(schid, &schib); in schib_update_mb()
305 if (cc) { in schib_update_mb()
307 schid, cc); in schib_update_mb()
523 int cc; in css_find_installed_chpid() local
525 cc = stsch(sid, &schib); in css_find_installed_chpid()
526 if (cc) { in css_find_installed_chpid()
527 report_fail("%s: sch %08x failed with cc=%d", __func__, sid, cc); in css_find_installed_chpid()
528 return cc; in css_find_installed_chpid()
549 int ret, cc; in css_generate_crw() local
560 cc = rchp(chpid); in css_generate_crw()
561 report(!cc, "rhcp cc != 0"); in css_generate_crw()