Received: by 2002:a05:6a10:c7d3:0:0:0:0 with SMTP id h19csp124927pxy; Sat, 14 Aug 2021 02:22:08 -0700 (PDT) X-Google-Smtp-Source: ABdhPJza7veHRGxIBstGm7Hfphz2ijK+qP5UhW9MdT1PnaRVt98UmNnBx49RKeOTfz38PhfY8wJ4 X-Received: by 2002:a05:6602:583:: with SMTP id v3mr5000952iox.91.1628932928099; Sat, 14 Aug 2021 02:22:08 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1628932928; cv=none; d=google.com; s=arc-20160816; b=pVjHh5w5zH9Buvw0tpnA3C7IY3AzsasiXAz06GjYkeYnH61twwxawhCO6QVHmef2fx 1O0Hxf5dGyX7+XLtQkRC5EvLClN159cqazf13Xem62A9vvK0LZlsJ7UsTg1TahK67G9v dTLyD1LZ8vZ65UQBPOPUS13+DL2eZgqloUa4b2OWIPAn+n4CJyiqcGBoxMskGozrYYLm I+MfWRknpt6wWxYD7b144Zj6PE9keRciHrlzHi6pRF8LBHx0hnirLAtkxv7mWje5P0/q cR2JPnAO6jS0twpa6Xni9d9tmUPFB0cJpTafMhsQw7FnnBKP+6svcjulLzXEjw6WNzaw 138w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=59DMaGKDlUPLnamYmuA2WxIIhBIPKb8OyjiSOjy/CdE=; b=HdZP/DW48zXt+OCnIK6R8ZijmiItUrTB9cwRtUnyRi7js/YkPOhsYse/f0hgx3IGP7 Ak84tjhNPZYxsTBh2PF0ZVTQ8s0qgfP9nFQBT7ZgCbMqqBJmWuMrIEmMA9tvFcsXqH3r Y2hguBnNYDGausv+2mNWJoC69ccBuhkk/+wahxSbNfIOG8nr73yG6zw27oexA4idpbfe F+/Zg4vO5ImJG6/7x3JpZOrLiRjW/l+f9NNKDy14zrl5qw5bykMVBmF186gkKIBnk8WS vg0jgIkbSdSePcr/yVKeszuKLzJQCQFEFuvfVnd9JhudW2a8QauelrvjdmIilNJ3DegE TtvQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id u6si4311849ilq.19.2021.08.14.02.21.57; Sat, 14 Aug 2021 02:22:08 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237870AbhHNJU6 (ORCPT + 99 others); Sat, 14 Aug 2021 05:20:58 -0400 Received: from smtp03.smtpout.orange.fr ([80.12.242.125]:56973 "EHLO smtp.smtpout.orange.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237880AbhHNJUu (ORCPT ); Sat, 14 Aug 2021 05:20:50 -0400 Received: from tomoyo.flets-east.jp ([114.149.34.46]) by mwinf5d19 with ME id hMJz250060zjR6y03MLKo5; Sat, 14 Aug 2021 11:20:21 +0200 X-ME-Helo: tomoyo.flets-east.jp X-ME-Auth: bWFpbGhvbC52aW5jZW50QHdhbmFkb28uZnI= X-ME-Date: Sat, 14 Aug 2021 11:20:21 +0200 X-ME-IP: 114.149.34.46 From: Vincent Mailhol To: Marc Kleine-Budde , linux-can@vger.kernel.org Cc: =?UTF-8?q?Stefan=20M=C3=A4tje?= , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Vincent Mailhol Subject: [PATCH v4 7/7] can: etas_es58x: clean-up documentation of struct es58x_fd_tx_conf_msg Date: Sat, 14 Aug 2021 18:17:50 +0900 Message-Id: <20210814091750.73931-8-mailhol.vincent@wanadoo.fr> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20210814091750.73931-1-mailhol.vincent@wanadoo.fr> References: <20210814091750.73931-1-mailhol.vincent@wanadoo.fr> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The documentation of struct es58x_fd_tx_conf_msg explains in details the different TDC parameters. However, those description are redundant with the documentation of struct can_tdc. Remove most of the description. Also, fixes a typo in the reference to the datasheet (E701 -> E70). Signed-off-by: Vincent Mailhol --- drivers/net/can/usb/etas_es58x/es58x_fd.h | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/drivers/net/can/usb/etas_es58x/es58x_fd.h b/drivers/net/can/usb/etas_es58x/es58x_fd.h index ee18a87e40c0..a191891b8777 100644 --- a/drivers/net/can/usb/etas_es58x/es58x_fd.h +++ b/drivers/net/can/usb/etas_es58x/es58x_fd.h @@ -96,23 +96,14 @@ struct es58x_fd_bittiming { * @ctrlmode: type enum es58x_fd_ctrlmode. * @canfd_enabled: boolean (0: Classical CAN, 1: CAN and/or CANFD). * @data_bittiming: Bittiming for flexible data-rate transmission. - * @tdc_enabled: Transmitter Delay Compensation switch (0: disabled, - * 1: enabled). On very high bitrates, the delay between when the - * bit is sent and received on the CANTX and CANRX pins of the - * transceiver start to be significant enough for errors to occur - * and thus need to be compensated. - * @tdco: Transmitter Delay Compensation Offset. Offset value, in time - * quanta, defining the delay between the start of the bit - * reception on the CANRX pin of the transceiver and the SSP - * (Secondary Sample Point). Valid values: 0 to 127. - * @tdcf: Transmitter Delay Compensation Filter window. Defines the - * minimum value for the SSP position, in time quanta. The - * feature is enabled when TDCF is configured to a value greater - * than TDCO. Valid values: 0 to 127. + * @tdc_enabled: Transmitter Delay Compensation switch (0: TDC is + * disabled, 1: TDC is enabled). + * @tdco: Transmitter Delay Compensation Offset. + * @tdcf: Transmitter Delay Compensation Filter window. * - * Please refer to the microcontroller datasheet: "SAM - * E701/S70/V70/V71 Family" section 49 "Controller Area Network - * (MCAN)" for additional information. + * Please refer to the microcontroller datasheet: "SAM E70/S70/V70/V71 + * Family" section 49 "Controller Area Network (MCAN)" for additional + * information. */ struct es58x_fd_tx_conf_msg { struct es58x_fd_bittiming nominal_bittiming; -- 2.31.1