From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 14A08C433DF for ; Sat, 4 Jul 2020 03:46:39 +0000 (UTC) Received: from ml01.01.org (ml01.01.org [198.145.21.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id DEB7221527 for ; Sat, 4 Jul 2020 03:46:38 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="b+GvlsX2" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org DEB7221527 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-nvdimm-bounces@lists.01.org Received: from ml01.vlan13.01.org (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id D1D3911508C1F; Fri, 3 Jul 2020 20:46:38 -0700 (PDT) Received-SPF: None (mailfrom) identity=mailfrom; client-ip=2001:8b0:10b:1236::1; helo=casper.infradead.org; envelope-from=rdunlap@infradead.org; receiver= Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 2965411504EA4 for ; Fri, 3 Jul 2020 20:46:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=da/AGHoRkO/K6+XfD+STqPg75KP2M3Vysus0lxWaxjo=; b=b+GvlsX2K4UeFKpQnj+S+D/Nay MZkBQRoPw75b975an8rimIFtmK4enh9wwLga47yaRZRffScQHHwUofM9oBGCzlmNKeT16ADlzdhhz 4qG3SHs/DPvLJmaz5qemOKS0U6rq76LPBM4+iLDdGNbnKl0EZ2Gadmgt2JV/lSaFZ21ioipqZIc+V cNNR4unosdctgrsyO/N1/ir+bbKO2jEMlAoZ+/z8zA2wPyogvb1eq4uMpW++yRz+N4ZgtTUBtDcTd GLraAVlq4a4Ez/xZj9FdUUGYpcHaOOYwK6xScKCwpIs2XqYO9Xbl/+nKrycct0CGw0X8z9e6yNNEE arwj0Ayg==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by casper.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1jrZ8G-0001Xb-OG; Sat, 04 Jul 2020 03:46:29 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Subject: [PATCH 15/17] Documentation/driver-api: usb/URB: drop doubled word Date: Fri, 3 Jul 2020 20:45:00 -0700 Message-Id: <20200704034502.17199-16-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200704034502.17199-1-rdunlap@infradead.org> References: <20200704034502.17199-1-rdunlap@infradead.org> MIME-Version: 1.0 Message-ID-Hash: NVW4CCWLZG27IGK2MWIKSBD6ICPUWO5I X-Message-ID-Hash: NVW4CCWLZG27IGK2MWIKSBD6ICPUWO5I X-MailFrom: rdunlap@infradead.org X-Mailman-Rule-Hits: nonmember-moderation X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation CC: Randy Dunlap , Jonathan Corbet , linux-doc@vger.kernel.org, Vinod Koul , dmaengine@vger.kernel.org, Luis Chamberlain , Greg Kroah-Hartman , William Breathitt Gray , linux-iio@vger.kernel.org, Mauro Carvalho Chehab , linux-media@vger.kernel.org, Jon Mason , Allen Hubbe , linux-ntb@googlegroups.com, linux-nvdimm@lists.01.org, linux-usb@vger.kernel.org, Eli Billauer X-Mailman-Version: 3.1.1 Precedence: list List-Id: "Linux-nvdimm developer list." Archived-At: List-Archive: List-Help: List-Post: List-Subscribe: List-Unsubscribe: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Drop the doubled word "also". Signed-off-by: Randy Dunlap Cc: Jonathan Corbet Cc: linux-doc@vger.kernel.org Cc: Greg Kroah-Hartman Cc: linux-usb@vger.kernel.org --- Documentation/driver-api/usb/URB.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200701.orig/Documentation/driver-api/usb/URB.rst +++ linux-next-20200701/Documentation/driver-api/usb/URB.rst @@ -240,7 +240,7 @@ How to do isochronous (ISO) transfers? ====================================== Besides the fields present on a bulk transfer, for ISO, you also -also have to set ``urb->interval`` to say how often to make transfers; it's +have to set ``urb->interval`` to say how often to make transfers; it's often one per frame (which is once every microframe for highspeed devices). The actual interval used will be a power of two that's no bigger than what you specify. You can use the :c:func:`usb_fill_int_urb` macro to fill _______________________________________________ Linux-nvdimm mailing list -- linux-nvdimm@lists.01.org To unsubscribe send an email to linux-nvdimm-leave@lists.01.org From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from casper.infradead.org (casper.infradead.org. [2001:8b0:10b:1236::1]) by gmr-mx.google.com with ESMTPS id s18si661926wme.2.2020.07.03.20.46.35 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 03 Jul 2020 20:46:35 -0700 (PDT) From: Randy Dunlap Subject: [PATCH 15/17] Documentation/driver-api: usb/URB: drop doubled word Date: Fri, 3 Jul 2020 20:45:00 -0700 Message-Id: <20200704034502.17199-16-rdunlap@infradead.org> In-Reply-To: <20200704034502.17199-1-rdunlap@infradead.org> References: <20200704034502.17199-1-rdunlap@infradead.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Jonathan Corbet , linux-doc@vger.kernel.org, Vinod Koul , dmaengine@vger.kernel.org, Luis Chamberlain , Greg Kroah-Hartman , William Breathitt Gray , linux-iio@vger.kernel.org, Mauro Carvalho Chehab , linux-media@vger.kernel.org, Jon Mason , Dave Jiang , Allen Hubbe , linux-ntb@googlegroups.com, Dan Williams , Vishal Verma , Ira Weiny , linux-nvdimm@lists.01.org, linux-usb@vger.kernel.org, Eli Billauer List-ID: Drop the doubled word "also". Signed-off-by: Randy Dunlap Cc: Jonathan Corbet Cc: linux-doc@vger.kernel.org Cc: Greg Kroah-Hartman Cc: linux-usb@vger.kernel.org --- Documentation/driver-api/usb/URB.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200701.orig/Documentation/driver-api/usb/URB.rst +++ linux-next-20200701/Documentation/driver-api/usb/URB.rst @@ -240,7 +240,7 @@ How to do isochronous (ISO) transfers? ====================================== Besides the fields present on a bulk transfer, for ISO, you also -also have to set ``urb->interval`` to say how often to make transfers; it's +have to set ``urb->interval`` to say how often to make transfers; it's often one per frame (which is once every microframe for highspeed devices). The actual interval used will be a power of two that's no bigger than what you specify. You can use the :c:func:`usb_fill_int_urb` macro to fill