mbox series

[0/2] fb: amifb: Convert to platform remove callback returning void

Message ID 20231109220151.10654-1-u.kleine-koenig@pengutronix.de (mailing list archive)
Headers show
Series fb: amifb: Convert to platform remove callback returning void | expand

Message

Uwe Kleine-König Nov. 9, 2023, 10:01 p.m. UTC
Hello,

in the series https://lore.kernel.org/20231107091740.3924258-1-u.kleine-koenig@pengutronix.de
I suggested to replace module_platform_driver_probe() in the amifb
driver. Geert Uytterhoeven objected because the amiga platform has very
little RAM. This series implements the alternative: Mark the driver
struct with __refdata to suppress the section warning. Patch #2 is just
a rebase from the above series.

Best regards
Uwe

Uwe Kleine-König (2):
  fb: amifb: Mark driver struct with __refdata to prevent section
    mismatch warning
  fb: amifb: Convert to platform remove callback returning void

 drivers/video/fbdev/amifb.c | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)


base-commit: aba6ab57a910ad4b940c2024d15f2cdbf5b7f76b

Comments

Helge Deller Nov. 10, 2023, 6:29 a.m. UTC | #1
On 11/9/23 23:01, Uwe Kleine-König wrote:
> in the series https://lore.kernel.org/20231107091740.3924258-1-u.kleine-koenig@pengutronix.de
> I suggested to replace module_platform_driver_probe() in the amifb
> driver. Geert Uytterhoeven objected because the amiga platform has very
> little RAM. This series implements the alternative: Mark the driver
> struct with __refdata to suppress the section warning. Patch #2 is just
> a rebase from the above series.

Thanks for the follow-up!
I've applied both patches.

Helge