diff options
author | Thomas Chou <thomas@wytron.com.tw> | 2015-10-31 20:54:53 +0800 |
---|---|---|
committer | Thomas Chou <thomas@wytron.com.tw> | 2015-11-06 09:14:12 +0800 |
commit | 687dbff2cf78fa990276c57dfa36f1f7bbbc7e2a (patch) | |
tree | d0d32df84b43bd76dcb3827a1aa9e89b12084c79 /drivers | |
parent | 1235e5a56ee61c9e986f4cd1a4e555c1a151e35a (diff) | |
download | u-boot-imx-687dbff2cf78fa990276c57dfa36f1f7bbbc7e2a.zip u-boot-imx-687dbff2cf78fa990276c57dfa36f1f7bbbc7e2a.tar.gz u-boot-imx-687dbff2cf78fa990276c57dfa36f1f7bbbc7e2a.tar.bz2 |
misc: altera_sysid: minor clean up
- Remove the penultimate comma in of_match ids
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Reviewed-by: Jagan Teki <jteki@openedev.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/misc/altera_sysid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/misc/altera_sysid.c b/drivers/misc/altera_sysid.c index 249b273..737520f 100644 --- a/drivers/misc/altera_sysid.c +++ b/drivers/misc/altera_sysid.c @@ -87,8 +87,8 @@ static const struct misc_ops altera_sysid_ops = { }; static const struct udevice_id altera_sysid_ids[] = { - { .compatible = "altr,sysid-1.0", }, - { } + { .compatible = "altr,sysid-1.0" }, + {} }; U_BOOT_DRIVER(altera_sysid) = { |