diff --git a/drivers/staging/sm750fb/sm750.c b/drivers/staging/sm750fb/sm750.c index 8f6908ba6f523f2492058e6117c67b8b1d08366c..616479e3a7fb23d0baab93e5eb7717d37dac178d 100644 --- a/drivers/staging/sm750fb/sm750.c +++ b/drivers/staging/sm750fb/sm750.c @@ -790,7 +790,6 @@ static int lynxfb_set_fbinfo(struct fb_info *info, int index) crtc->cursor.size = crtc->cursor.maxH * crtc->cursor.maxW * 2 / 8; crtc->cursor.vstart = share->pvMem + crtc->cursor.offset; - crtc->cursor.share = share; memset_io(crtc->cursor.vstart, 0, crtc->cursor.size); if (!g_hwcursor) { lynxfb_ops.fb_cursor = NULL; diff --git a/drivers/staging/sm750fb/sm750.h b/drivers/staging/sm750fb/sm750.h index fbe40a0c2fd432a1270e803f9b546316d77b832d..bd36f22a43ed22cb71942db78a07128f3dca1d26 100644 --- a/drivers/staging/sm750fb/sm750.h +++ b/drivers/staging/sm750fb/sm750.h @@ -134,8 +134,6 @@ struct lynx_cursor { int offset; /* mmio addr of hw cursor */ volatile char __iomem *mmio; - /* the lynx_share of this adaptor */ - struct lynx_share *share; }; struct lynxfb_crtc {