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=-11.4 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS 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 9FD07C433B4 for ; Tue, 4 May 2021 13:32:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 6A055610A7 for ; Tue, 4 May 2021 13:32:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231168AbhEDNdA (ORCPT ); Tue, 4 May 2021 09:33:00 -0400 Received: from mail.kernel.org ([198.145.29.99]:58448 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230519AbhEDNdA (ORCPT ); Tue, 4 May 2021 09:33:00 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id C567D610FC; Tue, 4 May 2021 13:32:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1620135125; bh=dOWj9KpD6YYv1QfoTJTLmqbkodKnlVInixOTiaxzaDk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=HrKeShIRzVWeWIlX5XlGbsfFUzFwzWIoIUTY3WM6l7grGpMLe7H+JCQscqGttBAe5 RsOxkPfjfMAurlRPuQ4tAYGFbYpLTHScwdXgCW1KDOKcVkhWPa5LWi0f2nu6jCmvAd mcFTymLjDpJWlCzXPFIQkhAXtoQNBMBfCxU8+5OA= Date: Tue, 4 May 2021 15:32:02 +0200 From: Greg KH To: Fabio Aiuto Cc: linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org Subject: Re: [PATCH 2/3] staging: rtl8723bs: use in-kernel aes encryption in OMAC1 routines Message-ID: References: <8c1c680a6498045746ca579e4caa3c87d13b3b49.1620133620.git.fabioaiuto83@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <8c1c680a6498045746ca579e4caa3c87d13b3b49.1620133620.git.fabioaiuto83@gmail.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, May 04, 2021 at 03:12:56PM +0200, Fabio Aiuto wrote: > --- a/drivers/staging/rtl8723bs/include/rtw_security.h > +++ b/drivers/staging/rtl8723bs/include/rtw_security.h > @@ -7,6 +7,7 @@ > #ifndef __RTW_SECURITY_H_ > #define __RTW_SECURITY_H_ > > +#include Why put this .h in a .h file? Why not just put it in the .c file(s) that need it? You will note that this .h file does not have any other #include lines in it... thanks, greg k-h