Lines Matching refs:temp_chip
147 struct fpga_inode *temp_chip = fpga_first_inode; in find_inode() local
149 if (temp_chip == NULL) in find_inode()
150 return temp_chip; in find_inode()
155 while ((temp_chip != NULL) && in find_inode()
156 (temp_chip->internal->dev != dev)) in find_inode()
157 temp_chip = temp_chip->next_inode; in find_inode()
159 return temp_chip; in find_inode()
180 struct fpga_inode *temp_chip = fpga_first_inode; in find_dinode() local
187 while (temp_chip != NULL) { in find_dinode()
188 if (temp_chip->internal != NULL) { in find_dinode()
189 temp_int = temp_chip->internal; in find_dinode()
196 temp_chip = temp_chip->next_inode; in find_dinode()
199 return temp_chip; in find_dinode()