From patchwork Sat Jun 4 15:53:02 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Jonathan Cameron X-Patchwork-Id: 12869625 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 9FDEAC433EF for ; Sat, 4 Jun 2022 15:44:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237267AbiFDPoI (ORCPT ); Sat, 4 Jun 2022 11:44:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33120 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230097AbiFDPoI (ORCPT ); Sat, 4 Jun 2022 11:44:08 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 64DBC19C2D for ; Sat, 4 Jun 2022 08:44:06 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id E2D7060DF6 for ; Sat, 4 Jun 2022 15:44:05 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6821BC34114; Sat, 4 Jun 2022 15:44:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1654357445; bh=Gen5nOgK5SFmjMzhPJHfLEOIUp0Libajxpp2b5BXXZ8=; h=From:To:Cc:Subject:Date:From; b=NnXRmqVwhsqgB45jdHT96J8ZLhieFBL3ytbAPFt5uhg9K4Sn32BJerWXvt0VZBma5 JYL5m2K5AN7eg0V9ZGsWJ545DJUKhPT6twvBI0en1dHX9gNf6waOGOkozwPvIlF99N xK6gPPKz4cYJL8FZpgoetAjjk1V6LfHZzYpcFcG7rPfmTmbMdwupH/+HBtFoMelslW 2SDybIn1a/Be4/Kb9A5TYwuFxuyNceSWVSw5y6qOXx+QRdeZbY+AocN9VbQ2p6j9vj gze+pzE+6C5qLNDNO6hjo3lNFBK6NtySoTaGf5I+ec2VIr8/Xx3+2rfRHRclWFrzCK K3L0YlBZq1JaA== From: Jonathan Cameron To: linux-iio@vger.kernel.org Cc: Jonathan Cameron , Tomasz Duszynski , =?utf-8?q?Nuno_S=C3=A1?= , Dmitry Baryshkov , Siddartha Mohanadoss Subject: [PATCH v2 0/4] 3rd set of IIO export namespaces. Date: Sat, 4 Jun 2022 16:53:02 +0100 Message-Id: <20220604155306.422937-1-jic23@kernel.org> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org From: Jonathan Cameron Changes since v1: - Rebase (bit of fuzz in patches 1 and 4) I sent v1 out in Feb and only got review on one patch (which I've since applied - thanks Nuno). Looking for a quick sanity check of these 4 that remain from anyone who has the time. Whilst this is mechanical stuff, I've made enough dumb mistakes in such patches over the years that I still like to get a second set of eyes on them if at all possible! Cc: Tomasz Duszynski Cc: Nuno Sá Cc: Dmitry Baryshkov Cc: Siddartha Mohanadoss Jonathan Cameron (4): iio: imu: bmi160: Move exported symbols to IIO_BMI160 namespace iio: pressure: bmp280: Move symbol exports to IIO_BMP280 namespace iio: chemical: sps30: Move symbol exports into IIO_SPS30 namespace iio: adc: qcom-vadc: Move symbol exports to IIO_QCOM_VADC namespace drivers/iio/adc/qcom-pm8xxx-xoadc.c | 1 + drivers/iio/adc/qcom-spmi-adc5.c | 1 + drivers/iio/adc/qcom-spmi-vadc.c | 1 + drivers/iio/adc/qcom-vadc-common.c | 16 ++++++++-------- drivers/iio/chemical/sps30.c | 2 +- drivers/iio/chemical/sps30_i2c.c | 1 + drivers/iio/chemical/sps30_serial.c | 1 + drivers/iio/imu/bmi160/bmi160_core.c | 6 +++--- drivers/iio/imu/bmi160/bmi160_i2c.c | 1 + drivers/iio/imu/bmi160/bmi160_spi.c | 1 + drivers/iio/pressure/bmp280-core.c | 2 +- drivers/iio/pressure/bmp280-i2c.c | 1 + drivers/iio/pressure/bmp280-regmap.c | 4 ++-- drivers/iio/pressure/bmp280-spi.c | 1 + 14 files changed, 24 insertions(+), 15 deletions(-) Reviewed-By: Joe Simmons-Talbott