From nobody Fri Sep 20 01:29:24 2024 Received: from mail.zeus03.de (zeus03.de [194.117.254.33]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 50BF21662F6 for ; Sat, 6 Jul 2024 11:22:11 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=194.117.254.33 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1720264933; cv=none; b=TqSVyIP/GCM7o1PlmsZ0u7BlezT0U9FkE/MA0+XutHCerhB22p0zv/BDpMFM8obgf3HVlAvrSyLHPQYzp/NjCyMV/Jd2Rv6bQc9T85dq9fGhfXtuS5UG7PTgaXaYraM6OzBu5shmeIpIKBeOsPMd+2GXdP8/pWHxAgg3bbz0S1g= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1720264933; c=relaxed/simple; bh=w5GcCkcs6imTks9IbKCY9YoQgcB5kKw6KzWCMSJTC/4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=g9XPV6ilhYb5XrrKiVSWrl/j703ts78NW/2vv6OHT7uMYyxs3iezsX+Kc/gENHM+cfrCLCdvxw+EBR3qP5fcx4yM0mH9HLQHaLsmRc746L4mnIfNto2Pvp9LvDIoqh70R3Vng2bR+txuTyTIdBPTUSIJj7zDluoTQV6Q2tJ0EMI= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=sang-engineering.com; spf=pass smtp.mailfrom=sang-engineering.com; dkim=pass (2048-bit key) header.d=sang-engineering.com header.i=@sang-engineering.com header.b=lPs95hzk; arc=none smtp.client-ip=194.117.254.33 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=sang-engineering.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=sang-engineering.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=sang-engineering.com header.i=@sang-engineering.com header.b="lPs95hzk" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= sang-engineering.com; h=from:to:cc:subject:date:message-id :in-reply-to:references:mime-version:content-transfer-encoding; s=k1; bh=yWAWcS0izyrYqOoxdBOC0Ijbo75Su8wsUQVwvGrthAo=; b=lPs95h zkLE/aXldtIAgeBtkAresAdHyssWgy+CtCdE6x3UkOa6J1lxlzSGhH+OzrA2Qh9W 3xFDi4CkZEPH5OLpVhZ4QKvroFfkNft6oAV3FFcFTxXcP2jCXnHGx+ExDx8emf0m PvXCVuweON6f+Q0HPBLFaFf92ulvHiwdym2vasLmZbh8mh72CxlbM88R4X/7F2CM +3lsi+mbBl792EzYrLT4lT7kOVN7GOmdhvMLFoGG+HJWx/zAYEJRAMoOnm8WBGM7 CAojjl1231e1VTHvxV0H6rCYGlx0TwS3QCjxZbvkNRIkaneXYE02d0mpW2fs5Tee rUIZ5qK6mFnZDV+A== Received: (qmail 3810766 invoked from network); 6 Jul 2024 13:21:52 +0200 Received: by mail.zeus03.de with ESMTPSA (TLS_AES_256_GCM_SHA384 encrypted, authenticated); 6 Jul 2024 13:21:52 +0200 X-UD-Smtp-Session: l3s3148p1@UuIGY5IcWsJQT+F6 From: Wolfram Sang To: linux-i2c@vger.kernel.org Cc: Wolfram Sang , Andi Shyti , linux-kernel@vger.kernel.org Subject: [PATCH v2 43/60] i2c: robotfuzz-osif: reword according to newest specification Date: Sat, 6 Jul 2024 13:20:43 +0200 Message-ID: <20240706112116.24543-44-wsa+renesas@sang-engineering.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240706112116.24543-1-wsa+renesas@sang-engineering.com> References: <20240706112116.24543-1-wsa+renesas@sang-engineering.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Change the wording of this driver wrt. the newest I2C v7 and SMBus 3.2 specifications and replace "master/slave" with more appropriate terms. Signed-off-by: Wolfram Sang Reviewed-by: Andi Shyti --- drivers/i2c/busses/i2c-robotfuzz-osif.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/i2c/busses/i2c-robotfuzz-osif.c b/drivers/i2c/busses/i= 2c-robotfuzz-osif.c index 66dfa211e736..80d45079b763 100644 --- a/drivers/i2c/busses/i2c-robotfuzz-osif.c +++ b/drivers/i2c/busses/i2c-robotfuzz-osif.c @@ -112,8 +112,8 @@ static u32 osif_func(struct i2c_adapter *adapter) } =20 static const struct i2c_algorithm osif_algorithm =3D { - .master_xfer =3D osif_xfer, - .functionality =3D osif_func, + .xfer =3D osif_xfer, + .functionality =3D osif_func, }; =20 #define USB_OSIF_VENDOR_ID 0x1964 --=20 2.43.0