/*1* Driver header for NOON010PC30L camera sensor chip.2*3* Copyright (c) 2010 Samsung Electronics, Co. Ltd4* Contact: Sylwester Nawrocki <[email protected]>5*6* This program is free software; you can redistribute it and/or modify7* it under the terms of the GNU General Public License as published by8* the Free Software Foundation; either version 2 of the License, or9* (at your option) any later version.10*/1112#ifndef NOON010PC30_H13#define NOON010PC30_H1415/**16* @clk_rate: the clock frequency in Hz17* @gpio_nreset: GPIO driving nRESET pin18* @gpio_nstby: GPIO driving nSTBY pin19*/2021struct noon010pc30_platform_data {22unsigned long clk_rate;23int gpio_nreset;24int gpio_nstby;25};2627#endif /* NOON010PC30_H */282930