lkml.org 
[lkml]   [2023]   [Mar]   [9]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v2 004/101] fbdev/acornfb: Only init fb_info once
    Date
    Init the fb_info instance once before parsing options. The current
    code initializes the instance once again after parsing options, which
    clears any resolution settings that have been given in the options
    string.

    Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
    ---
    drivers/video/fbdev/acornfb.c | 5 +----
    1 file changed, 1 insertion(+), 4 deletions(-)

    diff --git a/drivers/video/fbdev/acornfb.c b/drivers/video/fbdev/acornfb.c
    index 1b72edc01cfb..8642136a6bdc 100644
    --- a/drivers/video/fbdev/acornfb.c
    +++ b/drivers/video/fbdev/acornfb.c
    @@ -887,8 +887,6 @@ static int acornfb_setup(char *options)
    if (!options || !*options)
    return 0;

    - acornfb_init_fbinfo();
    -
    while ((opt = strsep(&options, ",")) != NULL) {
    if (!*opt)
    continue;
    @@ -930,9 +928,8 @@ static int acornfb_probe(struct platform_device *dev)

    if (fb_get_options("acornfb", &option))
    return -ENODEV;
    - acornfb_setup(option);
    -
    acornfb_init_fbinfo();
    + acornfb_setup(option);

    current_par.dev = &dev->dev;

    --
    2.39.2
    \
     
     \ /
      Last update: 2023-03-27 00:52    [W:9.369 / U:0.008 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site