diff options
author | Simon Glass | 2018-10-01 12:22:42 -0600 |
---|---|---|
committer | Simon Glass | 2018-10-09 04:40:27 -0600 |
commit | 07bc873c73315854f52506777d9afb70c5cfedda (patch) | |
tree | a43e49626c3977a27f5c0237a3388c10e378c7c3 /drivers | |
parent | a4f737a9c39abb45a5bde47f313df48e645331f7 (diff) |
ctags: Minor changes to fix ctags output
At present ctags emits lines with unmatched quotes which means that the
output file is invalid. This is with exuberant-ctags version 5.9~svn201103
but I also see it with plain ctags. I am not sure that it is a bug though.
Make a few minor changes in the source code to fix this problem.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/tegra124/sor.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/tegra124/sor.c b/drivers/video/tegra124/sor.c index 91e61b58527..172bb14d6c8 100644 --- a/drivers/video/tegra124/sor.c +++ b/drivers/video/tegra124/sor.c @@ -533,7 +533,8 @@ static int tegra_dc_sor_power_up(struct udevice *dev, int is_lvds) #if DEBUG_SOR static void dump_sor_reg(struct tegra_dc_sor_data *sor) { -#define DUMP_REG(a) printk(BIOS_INFO, "%-32s %03x %08x\n", \ +#define DUMP_REG(a) printk(BIOS_INFO, \ + "%-32s %03x %08x\n", \ #a, a, tegra_sor_readl(sor, a)); DUMP_REG(SUPER_STATE0); |