From patchwork Fri Sep 2 14:32:40 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Ujfalusi X-Patchwork-Id: 1122382 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.4) with ESMTP id p82EZZrX004104 for ; Fri, 2 Sep 2011 14:35:35 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752509Ab1IBOfe (ORCPT ); Fri, 2 Sep 2011 10:35:34 -0400 Received: from na3sys009aog102.obsmtp.com ([74.125.149.69]:34334 "EHLO na3sys009aog102.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752391Ab1IBOfd (ORCPT ); Fri, 2 Sep 2011 10:35:33 -0400 Received: from mail-fx0-f42.google.com ([209.85.161.42]) (using TLSv1) by na3sys009aob102.postini.com ([74.125.148.12]) with SMTP ID DSNKTmDptI6Fx8fAjl7hoZGCKIiXLbFIHvm6@postini.com; Fri, 02 Sep 2011 07:35:33 PDT Received: by mail-fx0-f42.google.com with SMTP id 23so3825381fxe.1 for ; Fri, 02 Sep 2011 07:35:32 -0700 (PDT) Received: by 10.223.17.3 with SMTP id q3mr1821985faa.71.1314974006892; Fri, 02 Sep 2011 07:33:26 -0700 (PDT) Received: from barack.localdomain (a91-153-205-41.elisa-laajakaista.fi [91.153.205.41]) by mx.google.com with ESMTPS id d25sm921066fak.7.2011.09.02.07.33.25 (version=SSLv3 cipher=OTHER); Fri, 02 Sep 2011 07:33:26 -0700 (PDT) From: Peter Ujfalusi To: Samuel Ortiz , Dmitry Torokhov , Misael Lopez Cruz Cc: linux-input@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 2/3] MFD: twl6040: Add accessor for revision ID Date: Fri, 2 Sep 2011 17:32:40 +0300 Message-Id: <1314973961-21187-3-git-send-email-peter.ujfalusi@ti.com> X-Mailer: git-send-email 1.7.6.1 In-Reply-To: <1314973961-21187-1-git-send-email-peter.ujfalusi@ti.com> References: <1314973961-21187-1-git-send-email-peter.ujfalusi@ti.com> Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Fri, 02 Sep 2011 14:35:35 +0000 (UTC) For client driver to use, if they need chip resvision information. Signed-off-by: Peter Ujfalusi --- include/linux/mfd/twl6040.h | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/include/linux/mfd/twl6040.h b/include/linux/mfd/twl6040.h index 4c806f6..cb3b822 100644 --- a/include/linux/mfd/twl6040.h +++ b/include/linux/mfd/twl6040.h @@ -225,4 +225,9 @@ unsigned int twl6040_get_sysclk(struct twl6040 *twl6040); int twl6040_irq_init(struct twl6040 *twl6040); void twl6040_irq_exit(struct twl6040 *twl6040); +static inline int twl6040_get_revid(struct twl6040 *twl6040) +{ + return twl6040->rev; +} + #endif /* End of __TWL6040_CODEC_H__ */