mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-18 11:27:52 +07:00
hitfb: fix sections
Since the drivers probe call was changed from .init.text to .devinit.text
in commit c2e13037e6
("platform-drivers:
move probe to .devinit.text in drivers/video") the fb_fix_screeninfo and
fb_var_screeninfo structures must be changed from .init.data to
.devinit.data, too.
Also the drivers remove routine should be moved from .exit.text to
.devexit.text
Signed-off-by: Henrik Kretzschmar <henne@nachtwindheim.de>
Cc: Paul Mundt <lethal@linux-sh.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
49c39b4953
commit
e88a0f461a
@ -30,14 +30,14 @@
|
|||||||
|
|
||||||
#define WIDTH 640
|
#define WIDTH 640
|
||||||
|
|
||||||
static struct fb_var_screeninfo hitfb_var __initdata = {
|
static struct fb_var_screeninfo hitfb_var __devinitdata = {
|
||||||
.activate = FB_ACTIVATE_NOW,
|
.activate = FB_ACTIVATE_NOW,
|
||||||
.height = -1,
|
.height = -1,
|
||||||
.width = -1,
|
.width = -1,
|
||||||
.vmode = FB_VMODE_NONINTERLACED,
|
.vmode = FB_VMODE_NONINTERLACED,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct fb_fix_screeninfo hitfb_fix __initdata = {
|
static struct fb_fix_screeninfo hitfb_fix __devinitdata = {
|
||||||
.id = "Hitachi HD64461",
|
.id = "Hitachi HD64461",
|
||||||
.type = FB_TYPE_PACKED_PIXELS,
|
.type = FB_TYPE_PACKED_PIXELS,
|
||||||
.accel = FB_ACCEL_NONE,
|
.accel = FB_ACCEL_NONE,
|
||||||
@ -417,7 +417,7 @@ static int __devinit hitfb_probe(struct platform_device *dev)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __exit hitfb_remove(struct platform_device *dev)
|
static int __devexit hitfb_remove(struct platform_device *dev)
|
||||||
{
|
{
|
||||||
struct fb_info *info = platform_get_drvdata(dev);
|
struct fb_info *info = platform_get_drvdata(dev);
|
||||||
|
|
||||||
@ -462,7 +462,7 @@ static const struct dev_pm_ops hitfb_dev_pm_ops = {
|
|||||||
|
|
||||||
static struct platform_driver hitfb_driver = {
|
static struct platform_driver hitfb_driver = {
|
||||||
.probe = hitfb_probe,
|
.probe = hitfb_probe,
|
||||||
.remove = __exit_p(hitfb_remove),
|
.remove = __devexit_p(hitfb_remove),
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "hitfb",
|
.name = "hitfb",
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
|
Loading…
Reference in New Issue
Block a user