1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 /* 3 * Driver header for NOON010PC30L camera sensor chip. 4 * 5 * Copyright (c) 2010 Samsung Electronics, Co. Ltd 6 * Contact: Sylwester Nawrocki <s.nawrocki@samsung.com> 7 */ 8 9 #ifndef NOON010PC30_H 10 #define NOON010PC30_H 11 12 /** 13 * @clk_rate: the clock frequency in Hz 14 * @gpio_nreset: GPIO driving nRESET pin 15 * @gpio_nstby: GPIO driving nSTBY pin 16 */ 17 18 struct noon010pc30_platform_data { 19 unsigned long clk_rate; 20 int gpio_nreset; 21 int gpio_nstby; 22 }; 23 24 #endif /* NOON010PC30_H */ 25