Hi Enric,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on ljones-mfd/for-mfd-next]
[also build test ERROR on robh/for-next linus/master v5.6-rc4 next-20200305]
[cannot apply to linux/master]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    
https://github.com/0day-ci/linux/commits/Enric-Balletbo-i-Serra/dt-bindings-Add-binding-for-the-Analogix-ANX7688-chip/20200307-045427
base:   https://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git for-mfd-next
config: i386-randconfig-e001-20200305 (attached as .config)
compiler: gcc-7 (Debian 7.5.0-5) 7.5.0
reproduce:
        # save the attached .config to linux build tree
        make ARCH=i386 

If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <[email protected]>

All errors (new ones prefixed by >>):

   drivers/gpu/drm/bridge/analogix/analogix-anx7688.c: In function 
'anx7688_bridge_probe':
>> drivers/gpu/drm/bridge/analogix/analogix-anx7688.c:89:14: error: 'struct 
>> drm_bridge' has no member named 'of_node'
     data->bridge.of_node = dev->of_node;
                 ^

vim +89 drivers/gpu/drm/bridge/analogix/analogix-anx7688.c

    78  
    79  static int anx7688_bridge_probe(struct platform_device *pdev)
    80  {
    81          struct anx7688 *anx7688 = dev_get_drvdata(pdev->dev.parent);
    82          struct anx7688_bridge_data *data;
    83          struct device *dev = &pdev->dev;
    84  
    85          data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
    86          if (!data)
    87                  return -ENOMEM;
    88  
  > 89          data->bridge.of_node = dev->of_node;
    90          data->regmap = anx7688->regmap;
    91  
    92          /* FW version >= 0.85 supports bandwidth/lane count registers */
    93          if (anx7688->fw_version >= ANX7688_MINIMUM_FW_VERSION)
    94                  data->filter = true;
    95          else
    96                  /* Warn, but not fail, for backwards compatibility */
    97                  DRM_WARN("Old ANX7688 FW version (0x%04x), not 
filtering\n",
    98                           anx7688->fw_version);
    99  
   100          data->bridge.funcs = &anx7688_bridge_funcs;
   101          drm_bridge_add(&data->bridge);
   102  
   103          return 0;
   104  }
   105  

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/[email protected]

Attachment: .config.gz
Description: application/gzip

_______________________________________________
dri-devel mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/dri-devel

Reply via email to