Skip to content
Permalink
Markus-Schneid…
Switch branches/tags

Commits on Aug 16, 2021

  1. drm/mediatek: Add mt8195 DisplayPort driver

    This patch adds a DisplayPort driver for the Mediatek mt8195 SoC.
    
    It supports both functional units on the mt8195, the embedded
    DisplayPort as well as the external DisplayPort units. It offers
    hot-plug-detection, audio up to 8 channels, and DisplayPort 1.4 with up
    to 4 lanes.
    
    This driver is based on an initial version by
    Jason-JH.Lin <jason-jh.lin@mediatek.com>.
    
    Signed-off-by: Markus Schneider-Pargmann <msp@baylibre.com>
    scosu authored and intel-lab-lkp committed Aug 16, 2021
  2. video/hdmi: Add audio_infoframe packing for DP

    Similar to HDMI, DP uses audio infoframes as well which are structured
    very similar to the HDMI ones.
    
    This patch adds a helper function to pack the HDMI audio infoframe for
    DP, called hdmi_audio_infoframe_pack_for_dp().
    hdmi_audio_infoframe_pack_only() is split into two parts. One of them
    packs the payload only and can be used for HDMI and DP.
    
    Signed-off-by: Markus Schneider-Pargmann <msp@baylibre.com>
    scosu authored and intel-lab-lkp committed Aug 16, 2021
  3. drm/edid: Add cea_sad helpers for freq/length

    This patch adds two helper functions that extract the frequency and word
    length from a struct cea_sad.
    
    For these helper functions new defines are added that help translate the
    'freq' and 'byte2' fields into real numbers.
    
    Signed-off-by: Markus Schneider-Pargmann <msp@baylibre.com>
    scosu authored and intel-lab-lkp committed Aug 16, 2021
  4. drm/mediatek: dpi: Add dpintf support

    dpintf is the displayport interface hardware unit. This unit is similar
    to dpi and can reuse most of the code.
    
    This patch adds support for mt8195-dpintf to this dpi driver. Main
    differences are:
     - Some features/functional components are not available for dpintf
       which are now excluded from code execution once is_dpintf is set
     - dpintf can and needs to choose between different clockdividers based
       on the clockspeed. This is done by choosing a different clock parent.
     - There are two additional clocks that need to be managed. These are
       only set for dpintf and will be set to NULL if not supplied. The
       clk_* calls handle these as normal clocks then.
     - Some register contents differ slightly between the two components. To
       work around this I added register bits/masks with a DPINTF_ prefix
       and use them where different.
    
    Based on a separate driver for dpintf created by
    Jason-JH.Lin <jason-jh.lin@mediatek.com>.
    
    Signed-off-by: Markus Schneider-Pargmann <msp@baylibre.com>
    scosu authored and intel-lab-lkp committed Aug 16, 2021
  5. dt-bindings: mediatek,dpi: Add mt8195 dpintf

    DP_INTF is similar to the actual dpi. They differ in some points
    regarding registers and what needs to be set but the function blocks
    itself are similar in design.
    
    Signed-off-by: Markus Schneider-Pargmann <msp@baylibre.com>
    scosu authored and intel-lab-lkp committed Aug 16, 2021

Commits on Aug 15, 2021

  1. of: fdt: Remove weak early_init_dt_mark_hotplug_memory_arch()

    Commit 41a9ada ("of/fdt: mark hotpluggable memory") introduced
    two (for systems with and without memblock) weak versions of
    early_init_dt_mark_hotplug_memory_arch(), that could be overridden by an
    architecture-specific version.  However, no overrides ever emerged.
    Later, commit aca52c3 ("mm: remove CONFIG_HAVE_MEMBLOCK")
    removed the non-memblock version.
    
    Remove early_init_dt_mark_hotplug_memory_arch(), and replace it by a
    direct call to memblock_mark_hotplug().
    
    Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
    Link: https://lore.kernel.org/r/1a61f75ec50d3c2922fcdbe33337266a58a4125f.1628671960.git.geert+renesas@glider.be
    Signed-off-by: Rob Herring <robh@kernel.org>
    geertu authored and robherring committed Aug 15, 2021
  2. of: fdt: Remove early_init_dt_reserve_memory_arch() override capability

    Commit e7ae8d1 ("MIPS: replace add_memory_region with
    memblock") removed the last architecture-specific override of
    early_init_dt_reserve_memory_arch().
    Convert the common implementation from a weak global function to a
    static function.
    
    Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
    Link: https://lore.kernel.org/r/be0140a0183ecfd0a3afa4fe6d2d77ed418102f9.1628671897.git.geert+renesas@glider.be
    Signed-off-by: Rob Herring <robh@kernel.org>
    geertu authored and robherring committed Aug 15, 2021

Commits on Aug 14, 2021

  1. of: property: fw_devlink: Add support for "resets" and "pwms"

    Allows better tracking of dependencies between devices.
    
    Signed-off-by: Saravana Kannan <saravanak@google.com>
    Link: https://lore.kernel.org/r/20210805223729.1196047-1-saravanak@google.com
    Signed-off-by: Rob Herring <robh@kernel.org>
    Saravana Kannan authored and robherring committed Aug 14, 2021
  2. dt-bindings: timer: Remove binding for energymicro,efm32-timer.txt

    The driver has been removed by commit 523d83e
    ("clocksource/drivers/efm32: Drop unused timer code") that's why binding
    doc shouldn't be also valid anymore.
    
    Signed-off-by: Michal Simek <michal.simek@xilinx.com>
    Link: https://lore.kernel.org/r/571fc4b2e6d41c61b7f4445601a79bb50aace2e7.1628245879.git.michal.simek@xilinx.com
    Signed-off-by: Rob Herring <robh@kernel.org>
    Michal Simek authored and robherring committed Aug 14, 2021
  3. dt-bindings: gpu: mali-bifrost: Add RK3568 compatible

    The Rockchip RK3568 SoC has a Bifrost Mali-G52 GPU,
    add a compatible string for it.
    
    Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com>
    Link: https://lore.kernel.org/r/20210805025948.10900-3-ezequiel@collabora.com
    Signed-off-by: Rob Herring <robh@kernel.org>
    ezequielgarcia authored and robherring committed Aug 14, 2021

Commits on Aug 3, 2021

  1. of: fdt: do not update local variable after use

    Fix the below warning:
    drivers/of/fdt.c:196:4: warning: Value stored to 'pprev' is never read
    [clang-analyzer-deadcode.DeadStores]
                 pprev      = &pp->next;
                 ^            ~~~~~~~~~
    
    Signed-off-by: Ohhoon Kwon <ohoono.kwon@samsung.com>
    Link: https://lore.kernel.org/r/20210803101309.904-1-ohoono.kwon@samsung.com
    Signed-off-by: Rob Herring <robh@kernel.org>
    Ohhoon Kwon authored and robherring committed Aug 3, 2021

Commits on Aug 2, 2021

  1. Documentation: fix incorrect macro referencing in mscc-phy-vsc8531.txt

    Modify LINK_1000_ACTIVITY and LINK_100_ACTIVITY to VSC8531_LINK_1000_ACTIVITY
    and VSC8531_LINK_100_ACTIVITY respectively in the example of ethernet-phy node
    according to include/dt-bindings/net/mscc-phy-vsc8531.h.
    
    Signed-off-by: Baisheng Gao <gaobaisheng@bonc.com.cn>
    Link: https://lore.kernel.org/r/1627488086-200263-1-git-send-email-gaobaisheng@bonc.com.cn
    Signed-off-by: Rob Herring <robh@kernel.org>
    Baisheng Gao authored and robherring committed Aug 2, 2021
  2. dt-bindings: auxdisplay: arm-charlcd: Convert to json-schema

    Convert the ARM Versatile Character LCD Device Tree binding documentation
    to json-schema.
    
    Correct compatible value.
    Document missing properties.
    
    Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
    Link: https://lore.kernel.org/r/4a63caa4136e8a31e82c7d75bb6f273498e8cccf.1627402256.git.geert@linux-m68k.org
    Signed-off-by: Rob Herring <robh@kernel.org>
    geertu authored and robherring committed Aug 2, 2021
  3. dt-bindings: auxdisplay: img-ascii-lcd: Convert to json-schema

    Convert the Device Tree binding documentation for ASCII LCD displays on
    Imagination Technologies boards to json-schema.
    
    Drop bogus regmap property.
    Add example.
    
    Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
    Link: https://lore.kernel.org/r/6e74aa466d39ddc9abe502e054d04e8cc7b76b40.1627402094.git.geert@linux-m68k.org
    [robh: add type to 'offset']
    Signed-off-by: Rob Herring <robh@kernel.org>
    geertu authored and robherring committed Aug 2, 2021
  4. dt-bindings: memory: renesas,rpc-if: Miscellaneous improvements

      - Fix rejection of legitimate flash subnodes containing multiple
        compatible values,
      - Add missing list of required properties.
    
    Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
    Link: https://lore.kernel.org/r/d81b59a513c2a5204c8378b4a89cd07f97c46797.1627401508.git.geert+renesas@glider.be
    Signed-off-by: Rob Herring <robh@kernel.org>
    geertu authored and robherring committed Aug 2, 2021
  5. dt-bindings: net: renesas,etheravb: Document Gigabit Ethernet IP

    Document Gigabit Ethernet IP found on RZ/G2L SoC.
    
    Gigabit Ethernet Interface includes Ethernet controller (E-MAC),
    Internal TCP/IP Offload Engine (TOE) and Dedicated Direct memory
    access controller (DMAC) for transferring transmitted Ethernet
    frames to and received Ethernet frames from respective storage
    areas in the URAM at high speed.
    
    Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
    Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
    Link: https://lore.kernel.org/r/20210727123450.15918-1-biju.das.jz@bp.renesas.com
    Signed-off-by: Rob Herring <robh@kernel.org>
    Biju Das authored and robherring committed Aug 2, 2021

Commits on Jul 29, 2021

  1. dt-bindings: rng: mediatek: add mt7986 to mtk rng binding

    Add RNG binding for MT7986 SoC.
    
    Signed-off-by: Sam Shih <sam.shih@mediatek.com>
    Link: https://lore.kernel.org/r/20210726071439.14248-9-sam.shih@mediatek.com
    Signed-off-by: Rob Herring <robh@kernel.org>
    SamShih33 authored and robherring committed Jul 29, 2021
  2. dt-bindings: arm: Convert Gemini boards to YAML

    This removes the old plaintext Gemini binding and replace it
    with a YAML schema, adding some new boards in the process.
    While we are at it, add the missing vendors to the vendor
    prefix file.
    
    Drop the overly deliberate description of subnodes and the big
    example from the old document. Keep the elaborate description.
    
    I noticed that "wiliboard" is not a real vendor, the vendor
    is named "wiligear" so deprecated this and replaced with the
    proper vendor.
    
    Cc: Corentin Labbe <clabbe@baylibre.com>
    Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
    Link: https://lore.kernel.org/r/20210723152356.1874088-1-linus.walleij@linaro.org
    Signed-off-by: Rob Herring <robh@kernel.org>
    linusw authored and robherring committed Jul 29, 2021
  3. dt-bindings: mtd: update mtd-physmap.yaml reference

    Changeset 63f8e9e ("dt-bindings: mtd: Convert mtd-physmap to DT schema")
    renamed: Documentation/devicetree/bindings/mtd/mtd-physmap.txt
    to: Documentation/devicetree/bindings/mtd/mtd-physmap.yaml.
    
    Update its cross-reference accordingly.
    
    Fixes: 63f8e9e ("dt-bindings: mtd: Convert mtd-physmap to DT schema")
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    Link: https://lore.kernel.org/r/ab2ff9ee66110c37691b467ec8b4679e9d426416.1626947923.git.mchehab+huawei@kernel.org
    Signed-off-by: Rob Herring <robh@kernel.org>
    mchehab authored and robherring committed Jul 29, 2021
  4. dt-bindings: nvmem: Convert UniPhier eFuse bindings to json-schema

    Convert the UniPhier eFuse binding to DT schema format.
    
    Cc: Keiji Hayashibara <hayashibara.keiji@socionext.com>
    Signed-off-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
    Link: https://lore.kernel.org/r/1626661864-15473-3-git-send-email-hayashi.kunihiko@socionext.com
    Signed-off-by: Rob Herring <robh@kernel.org>
    khayash1 authored and robherring committed Jul 29, 2021
  5. dt-bindings: nvmem: Extend patternProperties to optionally indicate b…

    …it position
    
    Allow to extend expression of sub nodes to optionally indicate bit
    position. This extension is needed to distinguish between different bit
    positions in the same address.
    
    For example, there are two nvmem nodes starting with bit 4 and bit 0
    at the same address 0x54. In this case, it can be expressed as follows.
    
        trim@54,4 {
            reg = <0x54 1>;
            bits = <4 2>;
        };
        trim@54,0 {
            reg = <0x54 1>;
            bits = <0 4>;
        };
    
    Signed-off-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
    Link: https://lore.kernel.org/r/1626661864-15473-2-git-send-email-hayashi.kunihiko@socionext.com
    Signed-off-by: Rob Herring <robh@kernel.org>
    khayash1 authored and robherring committed Jul 29, 2021
  6. dt-bindings: fpga: convert Xilinx Zynq MPSoC bindings to YAML

    Convert FPGA Manager for Xilinx Zynq MPSoC bindings documentation to
    YAML.
    
    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
    Link: https://lore.kernel.org/r/20210716212621.286806-1-iwamatsu@nigauri.org
    Signed-off-by: Rob Herring <robh@kernel.org>
    iwamatsu authored and robherring committed Jul 29, 2021
  7. dt-bindings: power: reset: convert Xilinx Zynq MPSoC bindings to YAML

    Convert power managemnet for Xilinx Zynq MPSoC bindings documentation to
    YAML.
    
    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
    Link: https://lore.kernel.org/r/20210715095627.228176-1-iwamatsu@nigauri.org
    Signed-off-by: Rob Herring <robh@kernel.org>
    iwamatsu authored and robherring committed Jul 29, 2021

Commits on Jul 27, 2021

  1. dt-bindings: arm: mediatek: mmsys: add MT8365 SoC binding

    Add the MMSYS binding documentation for the MT8365 SoC.
    
    Signed-off-by: Fabien Parent <fparent@baylibre.com>
    Reviewed-by: Rob Herring <robh@kernel.org>
    Signed-off-by: Rob Herring <robh@kernel.org>
    Link: https://lore.kernel.org/r/20210519161847.3747352-2-fparent@baylibre.com
    Fabo authored and robherring committed Jul 27, 2021
  2. dt-bindings: arm: mediatek: mmsys: convert to YAML format

    Convert the mmsys bindings to the YAML format.
    
    Signed-off-by: Fabien Parent <fparent@baylibre.com>
    Reviewed-by: Rob Herring <robh@kernel.org>
    Signed-off-by: Rob Herring <robh@kernel.org>
    Link: https://lore.kernel.org/r/20210519161847.3747352-1-fparent@baylibre.com
    Fabo authored and robherring committed Jul 27, 2021
  3. dt-bindings: Remove "status" from schema examples

    There's no reason to have "status" properties in examples. "okay" is the
    default, and "disabled" turns off some schema checks ('required'
    specifically).
    
    Enabling qca,ar71xx causes a warning, so let's fix the node names:
    
    Documentation/devicetree/bindings/net/qca,ar71xx.example.dt.yaml: phy@3: '#phy-cells' is a required property
            From schema: schemas/phy/phy-provider.yaml
    
    Cc: Maxime Ripard <mripard@kernel.org>
    Cc: Chen-Yu Tsai <wens@csie.org>
    Cc: Thierry Reding <thierry.reding@gmail.com>
    Cc: Sam Ravnborg <sam@ravnborg.org>
    Cc: "David S. Miller" <davem@davemloft.net>
    Cc: Jakub Kicinski <kuba@kernel.org>
    Cc: Robert Marko <robert.marko@sartura.hr>
    Cc: Alessandro Zummo <a.zummo@towertech.it>
    Cc: Ramesh Shanmugasundaram <rashanmu@gmail.com>
    Cc: "G. Jaya Kumaran" <vineetha.g.jaya.kumaran@intel.com>
    Cc: ChiYuan Huang <cy_huang@richtek.com>
    Cc: Wei Xu <xuwei5@hisilicon.com>
    Cc: Dilip Kota <eswara.kota@linux.intel.com>
    Cc: Karol Gugala <kgugala@antmicro.com>
    Cc: Mateusz Holenko <mholenko@antmicro.com>
    Cc: Olivier Moysan <olivier.moysan@st.com>
    Cc: Peter Ujfalusi <peter.ujfalusi@ti.com>
    Cc: dri-devel@lists.freedesktop.org
    Cc: linux-media@vger.kernel.org
    Cc: netdev@vger.kernel.org
    Cc: linux-rtc@vger.kernel.org
    Cc: alsa-devel@alsa-project.org
    Signed-off-by: Rob Herring <robh@kernel.org>
    Reviewed-by: Rui Miguel Silva <rmfrfs@gmail.com>
    Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
    Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
    Reviewed-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> # For media
    Acked-by: Mark Brown <broonie@kernel.org>
    Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
    Reviewed-by: Oleksij Rempel <o.rempel@pengutronix.de>
    Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de>
    Link: https://lore.kernel.org/r/20210720172025.363238-1-robh@kernel.org
    robherring committed Jul 27, 2021
  4. dt-bindings: display: Fix graph 'unevaluatedProperties' related warnings

    The graph schema doesn't allow custom properties on endpoint nodes for
    '#/properties/port' and '#/$defs/port-base' should be used instead. This
    doesn't matter until 'unevaluatedProperties' support is implemented.
    
    Cc: David Airlie <airlied@linux.ie>
    Cc: Daniel Vetter <daniel@ffwll.ch>
    Cc: Rob Clark <robdclark@gmail.com>
    Cc: Sean Paul <sean@poorly.run>
    Cc: Marek Vasut <marex@denx.de>
    Cc: Krishna Manikandan <mkrishn@codeaurora.org>
    Cc: dri-devel@lists.freedesktop.org
    Signed-off-by: Rob Herring <robh@kernel.org>
    Acked-by: Sam Ravnborg <sam@ravnborg.org>
    Link: https://lore.kernel.org/r/20210719195001.2412345-1-robh@kernel.org
    robherring committed Jul 27, 2021
  5. dt-bindings: media: Fix graph 'unevaluatedProperties' related warnings

    The graph schema doesn't allow custom properties on endpoint nodes for
    '#/properties/port' and '#/$defs/port-base' should be used instead. This
    doesn't matter until 'unevaluatedProperties' support is implemented.
    
    Cc: Eugen Hristev <eugen.hristev@microchip.com>
    Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
    Cc: Nicolas Ferre <nicolas.ferre@microchip.com>
    Cc: Alexandre Belloni <alexandre.belloni@bootlin.com>
    Cc: Ludovic Desroches <ludovic.desroches@microchip.com>
    Cc: Fabrizio Castro <fabrizio.castro.jz@renesas.com>
    Cc: Ramesh Shanmugasundaram <rashanmu@gmail.com>
    Cc: linux-media@vger.kernel.org
    Signed-off-by: Rob Herring <robh@kernel.org>
    Link: https://lore.kernel.org/r/20210719194850.2410511-1-robh@kernel.org
    robherring committed Jul 27, 2021

Commits on Jul 23, 2021

  1. dt-bindings: pci: Add DT binding for Toshiba Visconti PCIe controller

    This commit adds the Device Tree binding documentation that allows
    to describe the PCIe controller found in Toshiba Visconti SoCs.
    
    Signed-off-by: Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
    Link: https://lore.kernel.org/r/20210723221421.113575-2-nobuhiro1.iwamatsu@toshiba.co.jp
    [robh: reference snps,dw-pcie.yaml]
    Signed-off-by: Rob Herring <robh@kernel.org>
    iwamatsu authored and robherring committed Jul 23, 2021
  2. dt-bindings: PCI: intel,lgm-pcie: Add reference to common schemas

    Add a reference to snps,dw-pcie.yaml (and indirectly pci-bus.yaml) schemas.
    With this, the common bus properties can be dropped from the schema.
    
    Cc: Bjorn Helgaas <bhelgaas@google.com>
    Cc: linux-pci@vger.kernel.org
    Signed-off-by: Rob Herring <robh@kernel.org>
    Link: https://lore.kernel.org/r/20210719220351.2662758-1-robh@kernel.org
    robherring committed Jul 23, 2021

Commits on Jul 19, 2021

  1. dt-bindings: PCI: remove designware-pcie.txt

    Now that the properties defined there were converted to DT schema,
    and the other dt-bindings are pointing to the new schemas,
    drop it.
    
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    Link: https://lore.kernel.org/r/c93261b41f9ffe8d97d8c930f57b41aaf7de5264.1626608375.git.mchehab+huawei@kernel.org
    Signed-off-by: Rob Herring <robh@kernel.org>
    mchehab authored and robherring committed Jul 19, 2021
  2. dt-bindings: PCI: update references to Designware schema

    Now that its contents were converted to a DT schema, replace
    the references for the old file on existing properties.
    
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    Link: https://lore.kernel.org/r/dfff4d94631546c53450d1baeddc694dd26b5c36.1626608375.git.mchehab+huawei@kernel.org
    Signed-off-by: Rob Herring <robh@kernel.org>
    mchehab authored and robherring committed Jul 19, 2021
  3. dt-bindings: PCI: add snps,dw-pcie-ep.yaml

    Currently, the designware schema is defined on a text file:
    	designware-pcie.txt
    
    It contains two separate schemas on it:
    
    - snps,dw-pcie
      This one uses the pci-bus.yaml schema;
    - snps,dw-pcie-ep
      This one uses the pci-ep.yaml schema.
    
    As the:
    	AllOf:
    	  - $ref: <foo>
    
    for the endpoint part is different than the PCI one, place
    it on a separate yaml file.
    
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    Link: https://lore.kernel.org/r/26025b256232c2e4bd91954907b9d92db27199a3.1626608375.git.mchehab+huawei@kernel.org
    Signed-off-by: Rob Herring <robh@kernel.org>
    mchehab authored and robherring committed Jul 19, 2021
  4. dt-bindings: PCI: add snps,dw-pcie.yaml

    Currently, the designware schema is defined on a text file:
    	designware-pcie.txt
    
    Convert the pci-bus part into a schema.
    
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    Link: https://lore.kernel.org/r/53363a7609176ca56c47ef57287466ee84087dc5.1626608375.git.mchehab+huawei@kernel.org
    Signed-off-by: Rob Herring <robh@kernel.org>
    mchehab authored and robherring committed Jul 19, 2021

Commits on Jul 16, 2021

  1. of: kexec: Remove FDT_PROP_* definitions

    The FDT_PROP_* definitions make it harder to follow the code.
    Remove them, and use the actual string literals instead.
    
    Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
    Link: https://lore.kernel.org/r/af415c86cd2ba9c8a6bb2eaaf56c3198a24b23d3.1626267092.git.geert+renesas@glider.be
    Signed-off-by: Rob Herring <robh@kernel.org>
    geertu authored and robherring committed Jul 16, 2021
Older