diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2016-09-22 18:13:09 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2016-09-22 18:13:09 +0100 |
commit | d675765a0244af1d65c292f2508009f1bd13e1b6 (patch) | |
tree | c22d8a7b3bba5280c0986efc892b8cebf9855f3d /hw/misc/imx25_ccm.c | |
parent | d486ccaa9ecdc37015ca0ecb330e3127ea948f8a (diff) |
imx: Use 'const char', not 'char const'
'char const' means the same thing as 'const char', but we
use the former in only a handful of places and we use the
latter over six thousand times. Switch the imx reg_name()
functions to bring them in line with everything else.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/misc/imx25_ccm.c')
-rw-r--r-- | hw/misc/imx25_ccm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/misc/imx25_ccm.c b/hw/misc/imx25_ccm.c index 5cd8c0a9a7..19e948a52d 100644 --- a/hw/misc/imx25_ccm.c +++ b/hw/misc/imx25_ccm.c @@ -27,7 +27,7 @@ } \ } while (0) -static char const *imx25_ccm_reg_name(uint32_t reg) +static const char *imx25_ccm_reg_name(uint32_t reg) { static char unknown[20]; |