diff options
author | Dilek Uzulmez <dilekuzulmez@gmail.com> | 2015-03-02 23:28:14 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-06 09:54:26 -0800 |
commit | fad0d05f7c05d9990e0fe3759511069e9e5e5c9e (patch) | |
tree | a051629ae19defa4b18c3fb05c7136d1567c1971 /drivers/staging/fbtft | |
parent | 6cb624ef71fb267026ace1e2aa91b9861e3c2457 (diff) | |
download | blackbird-op-linux-fad0d05f7c05d9990e0fe3759511069e9e5e5c9e.tar.gz blackbird-op-linux-fad0d05f7c05d9990e0fe3759511069e9e5e5c9e.zip |
Staging: fbtft: Remove unnecessary 'out of memory' message.
This patch fixes checkpatch.pl warning in file fb_ssd1351.c
WARNING: Possible unnecessary 'out of memory' message
Signed-off-by: Dilek Uzulmez <dilekuzulmez@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/fbtft')
-rw-r--r-- | drivers/staging/fbtft/fb_ssd1351.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/staging/fbtft/fb_ssd1351.c b/drivers/staging/fbtft/fb_ssd1351.c index b59120c0eb70..fd492b4eaad6 100644 --- a/drivers/staging/fbtft/fb_ssd1351.c +++ b/drivers/staging/fbtft/fb_ssd1351.c @@ -218,12 +218,8 @@ static void register_onboard_backlight(struct fbtft_par *par) bl_ops = devm_kzalloc(par->info->device, sizeof(struct backlight_ops), GFP_KERNEL); - if (!bl_ops) { - dev_err(par->info->device, - "%s: could not allocate memory for backlight operations.\n", - __func__); + if (!bl_ops) return; - } bl_ops->update_status = update_onboard_backlight; bl_props.type = BACKLIGHT_RAW; |