Lines Matching refs:temp_chip
142 struct fpga_inode *temp_chip = fpga_first_inode; in find_inode() local
144 if (temp_chip == NULL) in find_inode()
145 return temp_chip; in find_inode()
150 while ((temp_chip != NULL) && in find_inode()
151 (temp_chip->internal->dev != dev)) in find_inode()
152 temp_chip = temp_chip->next_inode; in find_inode()
154 return temp_chip; in find_inode()
175 struct fpga_inode *temp_chip = fpga_first_inode; in find_dinode() local
182 while (temp_chip != NULL) { in find_dinode()
183 if (temp_chip->internal != NULL) { in find_dinode()
184 temp_int = temp_chip->internal; in find_dinode()
191 temp_chip = temp_chip->next_inode; in find_dinode()
194 return temp_chip; in find_dinode()