diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-03-15 20:44:11 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-03-15 20:44:11 +0000 |
commit | 990d19fd6d925da5856de50fd84d8656e762b83c (patch) | |
tree | 78a21bfb29c4d0d4f10900714b098fb437695125 /sim/bfin/dv-bfin_pll.c | |
parent | 227d265839dcb5f90383a23e36dc7d0a5df62075 (diff) | |
download | gdb-990d19fd6d925da5856de50fd84d8656e762b83c.zip gdb-990d19fd6d925da5856de50fd84d8656e762b83c.tar.gz gdb-990d19fd6d925da5856de50fd84d8656e762b83c.tar.bz2 |
sim: bfin: fix brace style
Diffstat (limited to 'sim/bfin/dv-bfin_pll.c')
-rw-r--r-- | sim/bfin/dv-bfin_pll.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sim/bfin/dv-bfin_pll.c b/sim/bfin/dv-bfin_pll.c index b6e110a..8620039 100644 --- a/sim/bfin/dv-bfin_pll.c +++ b/sim/bfin/dv-bfin_pll.c @@ -42,7 +42,8 @@ struct bfin_pll #define mmr_base() offsetof(struct bfin_pll, pll_ctl) #define mmr_offset(mmr) (offsetof(struct bfin_pll, mmr) - mmr_base()) -static const char * const mmr_names[] = { +static const char * const mmr_names[] = +{ "PLL_CTL", "PLL_DIV", "VR_CTL", "PLL_STAT", "PLL_LOCKCNT", "CHIPID", }; #define mmr_name(off) mmr_names[(off) / 4] @@ -117,7 +118,8 @@ bfin_pll_io_read_buffer (struct hw *me, void *dest, return nr_bytes; } -static const struct hw_port_descriptor bfin_pll_ports[] = { +static const struct hw_port_descriptor bfin_pll_ports[] = +{ { "pll", 0, 0, output_port, }, { NULL, 0, 0, 0, }, }; |