[PATCH] mtd: maps: rbtx4939-flash: fix compile error

Frans Klaver fransklaver at gmail.com
Tue Oct 20 00:21:04 PDT 2015


On Mon, Oct 19, 2015 at 9:31 PM, Brian Norris
<computersforpeace at gmail.com> wrote:
> We got the syntax wrong here. Compile tested this time!
>
> Error:
>
>    drivers/mtd/maps/rbtx4939-flash.c: In function 'rbtx4939_flash_probe':
>>> drivers/mtd/maps/rbtx4939-flash.c:99:11: error: request for member 'dev' in something not a structure or union
>      info->mtd.dev.parent = &dev->dev;
>               ^

*Sigh*

Thanks Brian.

Frans

> Fixes: 9aa7e50276c1 ("mtd: maps: rbtx4939-flash: show parent device in sysfs")
> Reported-by: kbuild test robot <fengguang.wu at intel.com>
> Signed-off-by: Brian Norris <computersforpeace at gmail.com>
> Cc: Frans Klaver <fransklaver at gmail.com>
> ---
>  drivers/mtd/maps/rbtx4939-flash.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mtd/maps/rbtx4939-flash.c b/drivers/mtd/maps/rbtx4939-flash.c
> index 18ee361455a2..3a06ecfc55ff 100644
> --- a/drivers/mtd/maps/rbtx4939-flash.c
> +++ b/drivers/mtd/maps/rbtx4939-flash.c
> @@ -96,7 +96,7 @@ static int rbtx4939_flash_probe(struct platform_device *dev)
>                 err = -ENXIO;
>                 goto err_out;
>         }
> -       info->mtd.dev.parent = &dev->dev;
> +       info->mtd->dev.parent = &dev->dev;
>         err = mtd_device_parse_register(info->mtd, NULL, NULL, pdata->parts,
>                                         pdata->nr_parts);
>
> --
> 2.6.0.rc2.230.g3dd15c0
>



More information about the linux-mtd mailing list