2019-06-04 10:11:33 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2005-08-18 10:10:46 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2005 Russell King.
|
|
|
|
|
*/
|
2013-12-30 11:54:56 +05:30
|
|
|
#ifndef __MFD_MCP_SA11X0_H
|
|
|
|
|
#define __MFD_MCP_SA11X0_H
|
2005-08-18 10:10:46 +01:00
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
|
|
|
|
|
struct mcp_plat_data {
|
|
|
|
|
u32 mccr0;
|
|
|
|
|
u32 mccr1;
|
|
|
|
|
unsigned int sclk_rate;
|
2012-01-20 22:13:52 +00:00
|
|
|
void *codec_pdata;
|
2005-08-18 10:10:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|