1. 12 Oct, 2020 5 commits
  2. 08 Oct, 2020 3 commits
  3. 07 Oct, 2020 4 commits
  4. 06 Oct, 2020 10 commits
  5. 05 Oct, 2020 3 commits
  6. 01 Oct, 2020 13 commits
  7. 29 Sep, 2020 2 commits
    • Uwe Kleine-König's avatar
      scripts/dtc: only append to HOST_EXTRACFLAGS instead of overwriting · efe84d40
      Uwe Kleine-König authored
      When building with
      
      	$ HOST_EXTRACFLAGS=-g make
      
      the expectation is that host tools are built with debug informations.
      This however doesn't happen if the Makefile assigns a new value to the
      HOST_EXTRACFLAGS instead of appending to it. So use += instead of := for
      the first assignment.
      
      Fixes: e3fd9b53 ("scripts/dtc: consolidate include path options in Makefile")
      Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
      Signed-off-by: default avatarRob Herring <robh@kernel.org>
      efe84d40
    • Rob Herring's avatar
      dt-bindings: Fix 'reg' size issues in zynqmp examples · 64ff609b
      Rob Herring authored
      The default sizes in examples for 'reg' are 1 cell each. Fix the
      incorrect sizes in zynqmp examples:
      
      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.example.dt.yaml: example-0: dma-controller@fd4c0000:reg:0: [0, 4249616384, 0, 4096] is too long
      	From schema: /usr/local/lib/python3.8/dist-packages/dtschema/schemas/reg.yaml
      Documentation/devicetree/bindings/display/xlnx/xlnx,zynqmp-dpsub.example.dt.yaml: example-0: display@fd4a0000:reg:0: [0, 4249485312, 0, 4096] is too long
      	From schema: /usr/local/lib/python3.8/dist-packages/dtschema/schemas/reg.yaml
      Documentation/devicetree/bindings/display/xlnx/xlnx,zynqmp-dpsub.example.dt.yaml: example-0: display@fd4a0000:reg:1: [0, 4249526272, 0, 4096] is too long
      	From schema: /usr/local/lib/python3.8/dist-packages/dtschema/schemas/reg.yaml
      Documentation/devicetree/bindings/display/xlnx/xlnx,zynqmp-dpsub.example.dt.yaml: example-0: display@fd4a0000:reg:2: [0, 4249530368, 0, 4096] is too long
      	From schema: /usr/local/lib/python3.8/dist-packages/dtschema/schemas/reg.yaml
      Documentation/devicetree/bindings/display/xlnx/xlnx,zynqmp-dpsub.example.dt.yaml: example-0: display@fd4a0000:reg:3: [0, 4249534464, 0, 4096] is too long
      	From schema: /usr/local/lib/python3.8/dist-packages/dtschema/schemas/reg.yaml
      
      Cc: Hyun Kwon <hyun.kwon@xilinx.com>
      Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
      Cc: Vinod Koul <vkoul@kernel.org>
      Cc: dri-devel@lists.freedesktop.org
      Cc: dmaengine@vger.kernel.org
      Acked-by: default avatarMichal Simek <michal.simek@xilinx.com>
      Signed-off-by: default avatarRob Herring <robh@kernel.org>
      64ff609b