From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mta1.migadu.com (out-63.mta1.migadu.com [95.215.58.63]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 8230043E06A for ; Mon, 7 Sep 2026 08:16:13 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.63 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788768975; cv=none; b=eQGCSwXvC7VcQMnYox3ZH2bZ+Orkg54IqyaOs0CtHJaSi5w4NjpB2nULxbJtQhrJy60NGlUywLsfprwXeONoan1gXBq52w8GUFBDrft4W0FBXt/3+fwNr7n44UHloEMHwDEBfbqFC3HCR1B1LJl2COUfaOX5SoOPF7aQy0YywP4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788768975; c=relaxed/simple; bh=xsPLflOz+XM6DlLpHEYq3ndIt7wtTfSiDxsTp+sEFHk=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=mE31UkmVu/bMFeCQntO0dAQPTh8IgFzLN1bLYskSGVOEJyGgcV4X9nsKPGZY/S3wteVxWdas2Iex9SRFeLO+XUNa2uwHLRXUqx1jDa0VnDzZXzkjZd6OcyIpZqVNvks26kfF9AWv6rYfLG4RhqnFCm3wNSdSEZkitIMjnjwpjHQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=DeN57X8U; arc=none smtp.client-ip=95.215.58.63 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="DeN57X8U" X-Envelope-To: netdev@vger.kernel.org DKIM-Signature: a=rsa-sha256; bh=xsPLflOz+XM6DlLpHEYq3ndIt7wtTfSiDxsTp+sEFHk=; c=simple/simple; d=linux.dev; h=from:to:subject:date:message-id:mime-version:content-type; s=key1; t=1788768971; v=1; x=1789373771; b=DeN57X8UVlkizsTOYyiuA5omnGFZZe3sR9zrxv8HuqkdFv5cXACvMJigsK+iPxbjgvzPEuTO f0JITr92y74TSkKIzOsvc+NsltEOyOLgxBkNVzCRK2ngLm1jStpkW1xKZIa3tFNojNrYW0Gy637 8Fyr5EewfMyyvbBsglRHj9dg= X-Envelope-To: netdev@vger.kernel.org Received: by smtp.migadu.com with ESMTPS id 27a189db38457c1a; Mon, 07 Sep 2026 08:16:11 +0000 X-Mizu-Trace-ID: 27a189db38457c1a X-Migadu-Flow: FLOW_OUT Message-ID: Date: Mon, 7 Sep 2026 16:16:04 +0800 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH] net: fix repeated word 'to' in comment To: Hemanth Selam Cc: osmocom-net-gprs@lists.osmocom.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Pablo Neira Ayuso , Harald Welte , Andrew Lunn , "David S . Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni References: <20260907063804.26581-1-hemanth.selam@gmail.com> From: Xuanqiang Luo In-Reply-To: <20260907063804.26581-1-hemanth.selam@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Hi Hemanth, 在 2026/9/7 14:38, Hemanth Selam 写道: > Drop the second 'to', reported by checkpatch.pl as a possible repeated > word. Only touches a comment, no code changes. > > Assisted-by: Cursor:claude-opus-5 > Signed-off-by: Hemanth Selam > --- > drivers/net/gtp.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/net/gtp.c b/drivers/net/gtp.c > index 69fe5717846b..4aff23bcfdd1 100644 > --- a/drivers/net/gtp.c > +++ b/drivers/net/gtp.c > @@ -770,7 +770,7 @@ static int gtp_parse_exthdrs(struct sk_buff *skb, unsigned int *hdrlen) > * > * This length field includes length field size itself (1 byte), > * payload (variable length) and next type (1 byte). The extension > - * header is aligned to to 4 bytes. > + * header is aligned to 4 bytes. > */ > > do { Typo fixes are cleanups. Please specify the target tree: use [PATCH net-next] instead of a bare [PATCH]. Thanks, Xuanqiang