next_again        379 drivers/misc/apds990x.c 	int next_again = chip->again_meas;
next_again        384 drivers/misc/apds990x.c 		next_again -= 2; /* ALS saturated. Decrease gain by 2 steps */
next_again        386 drivers/misc/apds990x.c 		next_again--;
next_again        388 drivers/misc/apds990x.c 		next_again += 2; /* Too dark. Increase gain by 2 steps */
next_again        390 drivers/misc/apds990x.c 		next_again++;
next_again        393 drivers/misc/apds990x.c 	if (next_again < 0)
next_again        394 drivers/misc/apds990x.c 		next_again = 0;
next_again        395 drivers/misc/apds990x.c 	else if (next_again > APDS990X_MAX_AGAIN)
next_again        396 drivers/misc/apds990x.c 		next_again = APDS990X_MAX_AGAIN;
next_again        402 drivers/misc/apds990x.c 	else if (next_again != curr_again &&
next_again        410 drivers/misc/apds990x.c 	chip->again_next = next_again;