1*47c5455aSHelmut Raiger /*
2*47c5455aSHelmut Raiger  * (C) Copyright 2011
3*47c5455aSHelmut Raiger  * Helmut Raiger, HALE electronic GmbH, helmut.raiger@hale.at
4*47c5455aSHelmut Raiger  *
5*47c5455aSHelmut Raiger  * See file CREDITS for list of people who contributed to this
6*47c5455aSHelmut Raiger  * project.
7*47c5455aSHelmut Raiger  *
8*47c5455aSHelmut Raiger  * This program is free software; you can redistribute it and/or
9*47c5455aSHelmut Raiger  * modify it under the terms of the GNU General Public License as
10*47c5455aSHelmut Raiger  * published by the Free Software Foundation; either version 2 of
11*47c5455aSHelmut Raiger  * the License, or (at your option) any later version.
12*47c5455aSHelmut Raiger  *
13*47c5455aSHelmut Raiger  * This program is distributed in the hope that it will be useful,
14*47c5455aSHelmut Raiger  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15*47c5455aSHelmut Raiger  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16*47c5455aSHelmut Raiger  * GNU General Public License for more details.
17*47c5455aSHelmut Raiger  *
18*47c5455aSHelmut Raiger  * You should have received a copy of the GNU General Public License
19*47c5455aSHelmut Raiger  * along with this program; if not, write to the Free Software
20*47c5455aSHelmut Raiger  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21*47c5455aSHelmut Raiger  * MA 02111-1307 USA
22*47c5455aSHelmut Raiger  */
23*47c5455aSHelmut Raiger 
24*47c5455aSHelmut Raiger #ifndef _SYS_PROTO_H_
25*47c5455aSHelmut Raiger #define _SYS_PROTO_H_
26*47c5455aSHelmut Raiger 
27*47c5455aSHelmut Raiger struct mxc_weimcs {
28*47c5455aSHelmut Raiger 	u32 upper;
29*47c5455aSHelmut Raiger 	u32 lower;
30*47c5455aSHelmut Raiger 	u32 additional;
31*47c5455aSHelmut Raiger };
32*47c5455aSHelmut Raiger 
33*47c5455aSHelmut Raiger void mxc_setup_weimcs(int cs, const struct mxc_weimcs *weimcs);
34*47c5455aSHelmut Raiger 
35*47c5455aSHelmut Raiger #endif
36