From patchwork Sun May 7 09:10:25 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Philippe De Muyter X-Patchwork-Id: 13233706 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4B393C77B75 for ; Sun, 7 May 2023 09:18:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229948AbjEGJSO (ORCPT ); Sun, 7 May 2023 05:18:14 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45262 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229628AbjEGJSN (ORCPT ); Sun, 7 May 2023 05:18:13 -0400 X-Greylist: delayed 437 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Sun, 07 May 2023 02:18:11 PDT Received: from frolo.macqel.be (smtp2.macqel.be [109.135.2.61]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 12F3D100E8 for ; Sun, 7 May 2023 02:18:11 -0700 (PDT) Received: by frolo.macqel.be (Postfix, from userid 1000) id 17673DF00B2; Sun, 7 May 2023 11:10:51 +0200 (CEST) From: Philippe De Muyter To: linux-iio@vger.kernel.org Cc: Philippe De Muyter , Lars-Peter Clausen , Michael Hennerich , Jonathan Cameron Subject: [PATCH] iio: dac: ad5446: Add ID of compatible Texas Instruments i2c dac121c* Date: Sun, 7 May 2023 11:10:25 +0200 Message-Id: <1683450625-28789-1-git-send-email-Philippe.DeMuyter@macq.eu> X-Mailer: git-send-email 1.7.10.4 Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org From: Philippe De Muyter The Texas Instruments DAC121C* chips are the I2C counterparts of the DAC121S* SPI chips which are already supported by this ad5446 driver. Add them to the compatible list. Signed-off-by: Philippe De Muyter Cc: Lars-Peter Clausen Cc: Michael Hennerich Cc: Jonathan Cameron --- drivers/iio/dac/ad5446.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/iio/dac/ad5446.c b/drivers/iio/dac/ad5446.c index aa3130b33456..b95c0ccbb796 100644 --- a/drivers/iio/dac/ad5446.c +++ b/drivers/iio/dac/ad5446.c @@ -587,6 +587,7 @@ static const struct i2c_device_id ad5446_i2c_ids[] = { {"ad5602", ID_AD5602}, {"ad5612", ID_AD5612}, {"ad5622", ID_AD5622}, + {"dac121", ID_AD5622}, /* 'ti,' is dropped by 'of_modalias_node' */ {} }; MODULE_DEVICE_TABLE(i2c, ad5446_i2c_ids);