Commit 1f17a0fa authored by Fabian Frederick's avatar Fabian Frederick Committed by Tomi Valkeinen

video: fbdev: stifb.c: use container_of to resolve stifb_info from fb_info

Use container_of instead of casting first structure member.
Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent b232e94d
...@@ -918,7 +918,7 @@ static int ...@@ -918,7 +918,7 @@ static int
stifb_setcolreg(u_int regno, u_int red, u_int green, stifb_setcolreg(u_int regno, u_int red, u_int green,
u_int blue, u_int transp, struct fb_info *info) u_int blue, u_int transp, struct fb_info *info)
{ {
struct stifb_info *fb = (struct stifb_info *) info; struct stifb_info *fb = container_of(info, struct stifb_info, info);
u32 color; u32 color;
if (regno >= NR_PALETTE) if (regno >= NR_PALETTE)
...@@ -978,7 +978,7 @@ stifb_setcolreg(u_int regno, u_int red, u_int green, ...@@ -978,7 +978,7 @@ stifb_setcolreg(u_int regno, u_int red, u_int green,
static int static int
stifb_blank(int blank_mode, struct fb_info *info) stifb_blank(int blank_mode, struct fb_info *info)
{ {
struct stifb_info *fb = (struct stifb_info *) info; struct stifb_info *fb = container_of(info, struct stifb_info, info);
int enable = (blank_mode == 0) ? ENABLE : DISABLE; int enable = (blank_mode == 0) ? ENABLE : DISABLE;
switch (fb->id) { switch (fb->id) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment