/*1* AK4641 ALSA SoC Codec driver2*3* Copyright 2009 Philipp Zabel4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License version 2 as7* published by the Free Software Foundation.8*/910#ifndef __AK4641_H11#define __AK4641_H1213/**14* struct ak4641_platform_data - platform specific AK4641 configuration15* @gpio_power: GPIO to control external power to AK464116* @gpio_npdn: GPIO connected to AK4641 nPDN pin17*18* Both GPIO parameters are optional.19*/20struct ak4641_platform_data {21int gpio_power;22int gpio_npdn;23};2425#endif /* __AK4641_H */262728