Skip to content

Commit

Permalink
Staging: sm750fb: Fix basic coding style issues
Browse files Browse the repository at this point in the history
The word "enought" was changed to read as "enough".
In addition to this, there was a missing new-line after varaible
declarations within a function.

Signed-off-by: Timo A. Aranjo <timo.aranjo@aol.com>
Link: https://lore.kernel.org/r/20200826012101.12162-1-timo.aranjo@aol.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Timo A. Aranjo authored and Greg Kroah-Hartman committed Aug 28, 2020
1 parent e6627a5 commit dbd8c64
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/staging/sm750fb/sm750.c
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,7 @@ static int __maybe_unused lynxfb_suspend(struct device *dev)
{
struct fb_info *info;
struct sm750_dev *sm750_dev;

sm750_dev = dev_get_drvdata(dev);

console_lock();
Expand Down Expand Up @@ -500,7 +501,7 @@ static int lynxfb_ops_check_var(struct fb_var_screeninfo *var,
var->height = var->width = -1;
var->accel_flags = 0;/* FB_ACCELF_TEXT; */

/* check if current fb's video memory big enought to hold the onscreen*/
/* check if current fb's video memory big enough to hold the onscreen*/
request = var->xres_virtual * (var->bits_per_pixel >> 3);
/* defaulty crtc->channel go with par->index */

Expand Down

0 comments on commit dbd8c64

Please sign in to comment.