Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.14-rc7 25 lines 572 B view raw
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 * struct noon010pc30_platform_data - platform data 14 * @clk_rate: the clock frequency in Hz 15 * @gpio_nreset: GPIO driving nRESET pin 16 * @gpio_nstby: GPIO driving nSTBY pin 17 */ 18 19struct noon010pc30_platform_data { 20 unsigned long clk_rate; 21 int gpio_nreset; 22 int gpio_nstby; 23}; 24 25#endif /* NOON010PC30_H */