Lines Matching refs:temp_chip
151 struct fpga_inode *temp_chip = fpga_first_inode; in find_inode() local
153 if (temp_chip == NULL) in find_inode()
154 return temp_chip; in find_inode()
159 while ((temp_chip != NULL) && in find_inode()
160 (temp_chip->internal->dev != dev)) in find_inode()
161 temp_chip = temp_chip->next_inode; in find_inode()
163 return temp_chip; in find_inode()
184 struct fpga_inode *temp_chip = fpga_first_inode; in find_dinode() local
191 while (temp_chip != NULL) { in find_dinode()
192 if (temp_chip->internal != NULL) { in find_dinode()
193 temp_int = temp_chip->internal; in find_dinode()
200 temp_chip = temp_chip->next_inode; in find_dinode()
203 return temp_chip; in find_dinode()