diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-05-14 23:58:08 +0800 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-05-14 17:34:31 +0100 |
commit | be15411d97b6b9b2883b7f1ec52ef03bc770a6d4 (patch) | |
tree | ccfe447a830f2db14976998ef7916bd1a81c852f /drivers/regulator/tps62360-regulator.c | |
parent | b68b45d77d7c23c6d92576d494796912883be4e1 (diff) | |
download | op-kernel-dev-be15411d97b6b9b2883b7f1ec52ef03bc770a6d4.zip op-kernel-dev-be15411d97b6b9b2883b7f1ec52ef03bc770a6d4.tar.gz |
regulator: tps62360: Fix build error due to missing semicolon
Fix below build error:
CC [M] drivers/regulator/tps62360-regulator.o
drivers/regulator/tps62360-regulator.c:351:1: error: expected ',' or ';' before 'extern'
make[2]: *** [drivers/regulator/tps62360-regulator.o] Error 1
make[1]: *** [drivers/regulator] Error 2
make: *** [drivers] Error 2
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Laxman Dewangan <ldewangan@nvidia.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator/tps62360-regulator.c')
-rw-r--r-- | drivers/regulator/tps62360-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/tps62360-regulator.c b/drivers/regulator/tps62360-regulator.c index 926c0e8..e6e33be 100644 --- a/drivers/regulator/tps62360-regulator.c +++ b/drivers/regulator/tps62360-regulator.c @@ -326,7 +326,7 @@ static const struct of_device_id tps62360_of_match[] = { { .compatible = "ti,tps62362", .data = (void *)TPS62362}, { .compatible = "ti,tps62363", .data = (void *)TPS62363}, {}, -} +}; MODULE_DEVICE_TABLE(of, tps62360_of_match); #endif |