From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 15 Nov 2024 20:58:38 +0100 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1tC2Sk-002N61-1N for lore@lore.pengutronix.de; Fri, 15 Nov 2024 20:58:38 +0100 Received: from bombadil.infradead.org ([2607:7c80:54:3::133]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1tC2Si-0001iS-L9 for lore@pengutronix.de; Fri, 15 Nov 2024 20:58:38 +0100 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-Id:Date:Subject:To:From:Reply-To: Cc:Content-Type:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=vGsdK99pj08H86jB6K31ckMxFmy/a8Cn/ccLLg/iY10=; b=wyNbOIao+F7IZGtScDk1JPd5RQ 89XRub3hhP2TfYCMsoKDbKgsJ++Cs1N9u0LQA3W5dx8D4B0GISOMtMF67btVZPUbrmNwdPlDQQplw MGzGI0FM4Rlnuh5/dvNorP64ksYxsX3a/rIXMDjF36HZ9fkAJ4aPUlf4kRqbJyNMBO0vuYpyRhIUg 3zSPFjwu1erX81iCsqmkJtT5DSD9KbdlInIZ3zgV8oUzUbLm1wTJLdnvUhRgDj0j/ixFljArRDZUH x4kzTFaORMMSxBVPSyt8ErjtuvzFcQShNGzyI7QPsosjPazfWEI1ANSupr6l+5wgN1Wv/2RGEpOij 8xlI7vAw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.98 #2 (Red Hat Linux)) id 1tC2S8-00000003wb9-24bK; Fri, 15 Nov 2024 19:58:00 +0000 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by bombadil.infradead.org with esmtps (Exim 4.98 #2 (Red Hat Linux)) id 1tC2S3-00000003wXG-3cU6 for barebox@lists.infradead.org; Fri, 15 Nov 2024 19:57:58 +0000 Received: from dude02.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::28]) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1tC2S1-00017y-EK for barebox@lists.infradead.org; Fri, 15 Nov 2024 20:57:53 +0100 From: Marco Felsch To: barebox@lists.infradead.org Date: Fri, 15 Nov 2024 20:57:38 +0100 Message-Id: <20241115195747.997164-3-m.felsch@pengutronix.de> X-Mailer: git-send-email 2.39.5 In-Reply-To: <20241115195747.997164-1-m.felsch@pengutronix.de> References: <20241115195747.997164-1-m.felsch@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20241115_115755_894623_0CEACC5C X-CRM114-Status: UNSURE ( 8.44 ) X-CRM114-Notice: Please train this message. X-BeenThere: barebox@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "barebox" X-SA-Exim-Connect-IP: 2607:7c80:54:3::133 X-SA-Exim-Mail-From: barebox-bounces+lore=pengutronix.de@lists.infradead.org X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on metis.whiteo.stw.pengutronix.de X-Spam-Level: X-Spam-Status: No, score=-5.2 required=4.0 tests=AWL,BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,SPF_HELO_NONE,SPF_NONE autolearn=unavailable autolearn_force=no version=3.4.2 Subject: [PATCH 03/12] spi: add spi_{set,get}_ctldata accessors X-SA-Exim-Version: 4.2.1 (built Wed, 08 May 2019 21:11:16 +0000) X-SA-Exim-Scanned: Yes (on metis.whiteo.stw.pengutronix.de) We alreary support the controller_state priv data pointer, add the Linux APIs to set/get the data. Signed-off-by: Marco Felsch --- include/spi/spi.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/include/spi/spi.h b/include/spi/spi.h index 622de732fa6d..9261d508befd 100644 --- a/include/spi/spi.h +++ b/include/spi/spi.h @@ -116,6 +116,17 @@ static inline struct spi_device *to_spi_device(struct device *dev) return dev ? container_of(dev, struct spi_device, dev) : NULL; } +/* ctldata is for the bus_controller driver's runtime state */ +static inline void *spi_get_ctldata(const struct spi_device *spi) +{ + return spi->controller_state; +} + +static inline void spi_set_ctldata(struct spi_device *spi, void *state) +{ + spi->controller_state = state; +} + /** * struct spi_controller - interface to SPI master or slave controller * @dev: device interface to this driver -- 2.39.5