Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1390808 > unrolled thread
| Started by | Manav Batra <batmanav10@gmail.com> |
|---|---|
| First post | 2016-04-29 09:00 +0200 |
| Last post | 2016-04-29 09:00 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH] staging: sm750fb: Comparison to NULL fixed Manav Batra <batmanav10@gmail.com> - 2016-04-29 09:00 +0200
| From | Manav Batra <batmanav10@gmail.com> |
|---|---|
| Date | 2016-04-29 09:00 +0200 |
| Subject | [PATCH] staging: sm750fb: Comparison to NULL fixed |
| Message-ID | <rtaz8-1u8-15@gated-at.bofh.it> |
Signed-off-by: Manav Batra <batmanav10@gmail.com>
Improved comparison to NULL and removed some blank lines.
---
drivers/staging/sm750fb/ddk750_dvi.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/sm750fb/ddk750_dvi.c b/drivers/staging/sm750fb/ddk750_dvi.c
index a4a2550..bac432b 100644
--- a/drivers/staging/sm750fb/ddk750_dvi.c
+++ b/drivers/staging/sm750fb/ddk750_dvi.c
@@ -8,7 +8,8 @@
/* This global variable contains all the supported driver and its corresponding
function API. Please set the function pointer to NULL whenever the function
- is not supported. */
+ is not supported.
+*/
static dvi_ctrl_device_t g_dcftSupportedDviController[] = {
#ifdef DVI_CTRL_SII164
{
@@ -28,7 +29,6 @@ static dvi_ctrl_device_t g_dcftSupportedDviController[] = {
#endif
};
-
int dviInit(
unsigned char edgeSelect,
unsigned char busSelect,
@@ -45,7 +45,7 @@ int dviInit(
dvi_ctrl_device_t *pCurrentDviCtrl;
pCurrentDviCtrl = g_dcftSupportedDviController;
- if (pCurrentDviCtrl->pfnInit != NULL) {
+ if (pCurrentDviCtrl->pfnInit) {
return pCurrentDviCtrl->pfnInit(edgeSelect, busSelect, dualEdgeClkSelect, hsyncEnable,
vsyncEnable, deskewEnable, deskewSetting, continuousSyncEnable,
pllFilterEnable, pllFilterValue);
@@ -55,4 +55,3 @@ int dviInit(
#endif
-
--
1.9.1
Back to top | Article view | linux.kernel
csiph-web