Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751813AbdIWSPb (ORCPT ); Sat, 23 Sep 2017 14:15:31 -0400 Received: from mail-pg0-f65.google.com ([74.125.83.65]:34374 "EHLO mail-pg0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751389AbdIWSP3 (ORCPT ); Sat, 23 Sep 2017 14:15:29 -0400 X-Google-Smtp-Source: AOwi7QB33X4uLkzwIk3CuxtyLAHLWdbnmkINk+nyByEfC1kbyoGo8bgQ1ZI1HCmqxGfqsdHv9rS8ow== From: Shreeya Patel To: lgirdwood@gmail.com, broonie@kernel.org, robh+dt@kernel.org, mark.rutland@arm.com, baohua@kernel.org, alsa-devel@alsa-project.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, gregkh@linuxfoundation.org, outreachy-kernel@googlegroups.com Cc: Shreeya Patel Subject: [PATCH] Documentation: DT bindings: Add chip compatible string for audio codec. Date: Sat, 23 Sep 2017 23:45:23 +0530 Message-Id: <1506190523-4338-1-git-send-email-shreeya.patel23498@gmail.com> X-Mailer: git-send-email 2.7.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1131 Lines: 32 This patch adds chip compatible string to remove the warnings generated by checkpatch that -DT compatible string "toshiba,apb-dummy-codec" appears un-documented. Signed-off-by: Shreeya Patel --- Documentation/devicetree/bindings/sound/sirf-audio-codec.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/sound/sirf-audio-codec.txt b/Documentation/devicetree/bindings/sound/sirf-audio-codec.txt index 062f5ec..a61560b 100644 --- a/Documentation/devicetree/bindings/sound/sirf-audio-codec.txt +++ b/Documentation/devicetree/bindings/sound/sirf-audio-codec.txt @@ -3,6 +3,7 @@ SiRF internal audio CODEC Required properties: - compatible : "sirf,atlas6-audio-codec" or "sirf,prima2-audio-codec" + "toshiba,apb-dummy-codec" - reg : the register address of the device. @@ -11,7 +12,7 @@ Required properties: Example: audiocodec: audiocodec@b0040000 { - compatible = "sirf,atlas6-audio-codec"; + compatible = "sirf,atlas6-audio-codec", "toshiba,apb-dummy-codec"; reg = <0xb0040000 0x10000>; clocks = <&clks 27>; }; -- 2.7.4