mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 19:28:36 +00:00
b02d0177c1
Patch by Markus Klotzbuecher, 12 Jul 2006
14 lines
243 B
C
14 lines
243 B
C
#ifndef __PLD_H__
|
|
#define __PLD_H__
|
|
|
|
typedef struct spc1920_pld {
|
|
uchar com1_en;
|
|
uchar dsp_reset;
|
|
uchar dsp_hpi_on;
|
|
uchar codec_dsp_power_en;
|
|
uchar clk2_en;
|
|
uchar clk3_select;
|
|
uchar clk4_select;
|
|
} spc1920_pld_t;
|
|
|
|
#endif /* __PLD_H__ */
|