diff options
author | Tugce Sirin <ztugcesirin@gmail.com> | 2013-10-02 21:04:31 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-10-02 21:29:48 +0400 |
commit | 15f1df57cef9228f03cb063159c4c71149001325 (patch) | |
tree | b50714c8aee34c5b39be104af808824503927d34 /drivers/staging/nvec | |
parent | de40d1209898884ad5d15a7b5003d13f4f3263d5 (diff) | |
download | linux-15f1df57cef9228f03cb063159c4c71149001325.tar.xz |
staging: nvec: fix space after if statement in nvec.c
This patch fixes space after if statement in nvec/nvec.c
Signed-off-by: Tugce Sirin <ztugcesirin@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/nvec')
-rw-r--r-- | drivers/staging/nvec/nvec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/nvec/nvec.c b/drivers/staging/nvec/nvec.c index 5a5c6397e740..3066ee2e753b 100644 --- a/drivers/staging/nvec/nvec.c +++ b/drivers/staging/nvec/nvec.c @@ -802,7 +802,7 @@ static int tegra_nvec_probe(struct platform_device *pdev) unmute_speakers[] = { NVEC_OEM0, 0x10, 0x59, 0x95 }, enable_event[7] = { NVEC_SYS, CNF_EVENT_REPORTING, true }; - if(!pdev->dev.of_node) { + if (!pdev->dev.of_node) { dev_err(&pdev->dev, "must be instantiated using device tree\n"); return -ENODEV; } |