diff options
author | Thomas Zimmermann <tzimmermann@suse.de> | 2023-12-20 14:22:57 +0100 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2024-01-12 12:38:37 +0100 |
commit | e2e0b838a1849f92612a8305c09aaf31bf824350 (patch) | |
tree | 40f56b521cbde7c5b2bb852f02a361d5485788c8 /include/video | |
parent | ca6c080eef42e4149110f79cf73a48a6ec4e965d (diff) | |
download | linux-e2e0b838a1849f92612a8305c09aaf31bf824350.tar.gz linux-e2e0b838a1849f92612a8305c09aaf31bf824350.tar.bz2 linux-e2e0b838a1849f92612a8305c09aaf31bf824350.zip |
video/sticore: Remove info field from STI struct
The info field in struct sti_struct was used to detect the default
display device. That test is now done with the respective Linux device
and the info field is unused. Remove it.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/sticore.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/video/sticore.h b/include/video/sticore.h index 9d993e22805d..823666af1871 100644 --- a/include/video/sticore.h +++ b/include/video/sticore.h @@ -3,7 +3,6 @@ #define STICORE_H struct device; -struct fb_info; /* generic STI structures & functions */ @@ -368,9 +367,6 @@ struct sti_struct { /* PCI data structures (pg. 17ff from sti.pdf) */ u8 rm_entry[16]; /* pci region mapper array == pci config space offset */ - /* pointer to the fb_info where this STI device is used */ - struct fb_info *info; - /* pointer to the parent device */ struct device *dev; |