Received: by 2002:ac0:a5a7:0:0:0:0:0 with SMTP id m36-v6csp2084273imm; Mon, 16 Jul 2018 01:44:40 -0700 (PDT) X-Google-Smtp-Source: AAOMgpfyabUDsd1wvVMDG+FSYdsJIAy+Y2XHsvDhXA90HETeMiOuzIK4u2i+d30wD0YOgEMJ1LYa X-Received: by 2002:a65:5304:: with SMTP id m4-v6mr14504148pgq.250.1531730680162; Mon, 16 Jul 2018 01:44:40 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1531730680; cv=none; d=google.com; s=arc-20160816; b=g11DnHWOh1WvGBYScqit3uCKp100VqCz0CwChyroxX6XJO4l1b/OA3jkBvsFxUDsxj 61jU4FyQ2WFmgaqM87oqGJrfv405noZMLX36gOj5/kVRagpwAor/vAIDvPV22CrcEPlc rx36ePBV7vSLCToqkIeJndkcbNOhvA9gUnm7hkJxPgZHYWTt/fDIsArhovhxZSEZ7b+d NE789uoI8uAjp5ewVECCQfYAkAxRuqBEvAxc4f+9xUtvxLE0MqX5ABh4g2xce8TTt2x6 Qfc/83gbBJKmEwWIvZSjnDq+OED1DzD1E8cipWspEIorkwZpELt05qQIvhXeY78MJzzr 2qJA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date:arc-authentication-results; bh=+rIot94/alW+O0dnOgEpVNdcowZLUtu+TptwNM8DgjM=; b=qvIOXsRfJXTUNnwamy9ReAS1YQtcLI0q5u70mkSmgbsmPz+ROl3WwbNuRw5CSznWTI cNCH8gljYmKaP1LR4klQAmSpzyxuAsKIbbmHVWLyzold0dPQfCV6s6evC10CAW2ytpGr 1ZzJ63YBG0DDWDr7P+Q7cWo5hTsbszT0cmU0KAAJ8C9+Bp1aek8mNsuB1KJnF1sZ10+2 i1IBme2ZrSR+xHUZQUxuqIxOceTfaSQ9VQyeu3x+IZqYdzLSXkfaMCcb+4h6Cv1cgIJx zoFYvJB7K8ujnoSOuE3m17cZD5mDhDD6BZCMn/Gpu6W0RY8CFFir4FLoJmaDpGgUdJjG w3Aw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id t1-v6si32066297plb.90.2018.07.16.01.44.25; Mon, 16 Jul 2018 01:44:40 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730744AbeGPJI1 (ORCPT + 99 others); Mon, 16 Jul 2018 05:08:27 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:37624 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728734AbeGPJI1 (ORCPT ); Mon, 16 Jul 2018 05:08:27 -0400 Received: from localhost (LFbn-1-12247-202.w90-92.abo.wanadoo.fr [90.92.61.202]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 18604D02; Mon, 16 Jul 2018 08:42:07 +0000 (UTC) Date: Mon, 16 Jul 2018 10:42:05 +0200 From: Greg KH To: John Whitmore Cc: linux-kernel@vger.kernel.org, devel@driverdev.osuosl.org, kstewart@linuxfoundation.org, pombredanne@nexb.com, tglx@linutronix.de Subject: Re: [PATCH 02/10] staging:rtl8192u: remove typedef of struct TS_COMMON_INFO - Style Message-ID: <20180716084205.GC8260@kroah.com> References: <20180713201247.21428-1-johnfwhitmore@gmail.com> <20180713201247.21428-3-johnfwhitmore@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180713201247.21428-3-johnfwhitmore@gmail.com> User-Agent: Mutt/1.10.0 (2018-05-17) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Jul 13, 2018 at 09:12:39PM +0100, John Whitmore wrote: > To clear a checkpatch issue removed the typedef of the structure > TS_COMMON_INFO. > > This change removes the previous declaration, which defined two types, both > TS_COMMON_INFO and a pointer type PTS_COMMON_INFO: > > typedef struct _TS_COMMON_INFO { > ... > } TS_COMMON_INFO, *PTS_COMMON_INFO; > Same here, this should be "struct ts_common_info", not TS_COMMON_INFO. Can you fix both of these issues up and resend the series? thanks, greg k-h