[PATCH v2 01/10] drm/simpledrm: Remove mem field from device structure
Thomas Zimmermann
tzimmermann at suse.de
Wed Jul 20 14:27:23 UTC 2022
Remove the unused mem field from struct simpledrm_device.
Signed-off-by: Thomas Zimmermann <tzimmermann at suse.de>
---
drivers/gpu/drm/tiny/simpledrm.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/gpu/drm/tiny/simpledrm.c b/drivers/gpu/drm/tiny/simpledrm.c
index 768242a78e2b..9fd507119372 100644
--- a/drivers/gpu/drm/tiny/simpledrm.c
+++ b/drivers/gpu/drm/tiny/simpledrm.c
@@ -217,7 +217,6 @@ struct simpledrm_device {
unsigned int pitch;
/* memory management */
- struct resource *mem;
void __iomem *screen_base;
/* modesetting */
@@ -558,7 +557,6 @@ static int simpledrm_device_init_mm(struct simpledrm_device *sdev)
if (!screen_base)
return -ENOMEM;
- sdev->mem = mem;
sdev->screen_base = screen_base;
return 0;
--
2.36.1
More information about the dri-devel
mailing list