mirror of https://gitee.com/openkylin/linux.git
Staging: sm750fb: sm750: Remove irrelevant code
The variable ret is only declared and initialized to 0, but never referenced, so remove it. Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b02f9240e0
commit
f955a398f2
|
@ -524,14 +524,12 @@ static int lynxfb_ops_check_var(struct fb_var_screeninfo *var,
|
||||||
struct lynxfb_crtc *crtc;
|
struct lynxfb_crtc *crtc;
|
||||||
struct lynxfb_output *output;
|
struct lynxfb_output *output;
|
||||||
struct lynx_share *share;
|
struct lynx_share *share;
|
||||||
int ret;
|
|
||||||
resource_size_t request;
|
resource_size_t request;
|
||||||
|
|
||||||
par = info->par;
|
par = info->par;
|
||||||
crtc = &par->crtc;
|
crtc = &par->crtc;
|
||||||
output = &par->output;
|
output = &par->output;
|
||||||
share = par->share;
|
share = par->share;
|
||||||
ret = 0;
|
|
||||||
|
|
||||||
pr_debug("check var:%dx%d-%d\n",
|
pr_debug("check var:%dx%d-%d\n",
|
||||||
var->xres,
|
var->xres,
|
||||||
|
|
Loading…
Reference in New Issue