1. 02 5月, 2016 1 次提交
    • A
      of: include errno.h in of_graph.h · 011d6f5c
      Arnd Bergmann 提交于
      When CONFIG_OF is disabled, we have to include linux/errno.h before
      including of_graph.h, or get build errors like in the newly added
      sun4i drm driver:
      
      In file included from ../drivers/gpu/drm/sun4i/sun4i_drv.c:14:0:
      include/linux/of_graph.h: In function 'of_graph_parse_endpoint':
      include/linux/of_graph.h:58:10: error: 'ENOSYS' undeclared (first use in this function)
      
      A better solution is to ensure that the header can be included
      by itself, so let's include linux/errno.h here to fix the error
      we just got, and any similar future error.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Fixes: 9026e0d1 ("drm: Add Allwinner A10 Display Engine support")
      Signed-off-by: NRob Herring <robh@kernel.org>
      011d6f5c
  2. 25 4月, 2016 21 次提交
  3. 20 4月, 2016 16 次提交
  4. 01 4月, 2016 1 次提交
  5. 30 3月, 2016 1 次提交
    • R
      scripts/dtc: Update to upstream version 53bf130b1cdd · b9937347
      Rob Herring 提交于
      Sync to upstream dtc commit 53bf130b1cdd ("libfdt: simplify
      fdt_node_check_compatible()"). This adds the following commits from
      upstream:
      
      53bf130 libfdt: simplify fdt_node_check_compatible()
      c9d9121 Warn on node name unit-address presence/absence mismatch
      2e53f9d Catch unsigned 32bit overflow when parsing flattened device tree offsets
      Signed-off-by: NRob Herring <robh@kernel.org>
      b9937347