Lines Matching refs:temp_chip
152 struct fpga_inode *temp_chip = fpga_first_inode; in find_inode() local
154 if (temp_chip == NULL) in find_inode()
155 return temp_chip; in find_inode()
160 while ((temp_chip != NULL) && in find_inode()
161 (temp_chip->internal->dev != dev)) in find_inode()
162 temp_chip = temp_chip->next_inode; in find_inode()
164 return temp_chip; in find_inode()
185 struct fpga_inode *temp_chip = fpga_first_inode; in find_dinode() local
192 while (temp_chip != NULL) { in find_dinode()
193 if (temp_chip->internal != NULL) { in find_dinode()
194 temp_int = temp_chip->internal; in find_dinode()
201 temp_chip = temp_chip->next_inode; in find_dinode()
204 return temp_chip; in find_dinode()