Searched refs:opcr (Results 1 – 1 of 1) sorted by relevance
1341 static inline u32 get_opcr(__be32 opcr, u32 mask, u32 shift) in get_opcr() argument1343 return (be32_to_cpu(opcr) >> shift) & mask; in get_opcr()1346 static inline void set_opcr(__be32 *opcr, u32 value, u32 mask, u32 shift) in set_opcr() argument1348 *opcr &= ~cpu_to_be32(mask << shift); in set_opcr()1349 *opcr |= cpu_to_be32((value & mask) << shift); in set_opcr()1363 __be32 old_opcr, opcr[2]; in cmp_establish_pp_connection() local1368 ret = cmp_read(fdtv, opcr_address, opcr); in cmp_establish_pp_connection()1373 if (!get_opcr_online(*opcr)) { in cmp_establish_pp_connection()1378 old_opcr = *opcr; in cmp_establish_pp_connection()1380 if (get_opcr_p2p_connections(*opcr)) { in cmp_establish_pp_connection()[all …]