From nobody Thu Dec 18 20:36:29 2025 Received: from mail.resel.fr (mail.resel.fr [89.234.162.243]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 76CF222338 for ; Tue, 30 Jul 2024 07:05:34 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=89.234.162.243 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1722323136; cv=none; b=oDykStkzu/G9BR/v+H/7Qx5T/29W/6ECrJ5OSU7lbR3dwOE6p5gZKb69d+Wmsv85Jz1/rlVyI8A98HA39ZYq4FC+MJY/7j3hyNtdHvdJoqfwwgvhXPg2kRZTk1fCntkxJIhIq/sG3OP6Qg9WtRxWt9y73FEeQY8p9bXbd2sfQ3A= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1722323136; c=relaxed/simple; bh=IJIsXeFkd7ITV/hxJnRN9WNCgxBVJvSJ58aDV8Ql/NM=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=W+R0HmzIsK+MNEpT658IOHIH+LdJnFPTOuyTIXJ3yWZebLzK26mph9aUttfsPXKxXt80yr9i1XYDGfnfxUXqNg+PwyMhAvYDHY2hMFEO5Vn3zF25igTtRKCYBuzMKvcBulkByaV/y/kjaiXwOXs3dUceFhaki/axpDoIxWjLcso= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=resel.fr; spf=pass smtp.mailfrom=resel.fr; dkim=pass (1024-bit key) header.d=resel.fr header.i=@resel.fr header.b=TtRAGzug; arc=none smtp.client-ip=89.234.162.243 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=resel.fr Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=resel.fr Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=resel.fr header.i=@resel.fr header.b="TtRAGzug" Received: from amateria.intra.resel.fr (localhost [127.0.0.1]) by mail.resel.fr (ResEl) with ESMTP id 6B6831203F7; Tue, 30 Jul 2024 09:05:31 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=resel.fr; h=cc :cc:content-transfer-encoding:date:from:from:message-id :mime-version:reply-to:subject:subject:to:to; s=mail; bh=J2LpPPo fMvpGjD4SSd0beeD9TY0IUQeOzw1sqk+Urdg=; b=TtRAGzugOxTXFSB2Nf/B+dd 98bFkYwK8bN9VWI0I6hj/4CRZa+4lDH/GSeibD1vUr+X4UbcbbFvRnowNrvy8zCh NtMhNV3xTnfETWjSxn4rmi6IB7eWGWgGhTTNfOqqHMUVb3jbT8ru6HWhrVipY4II 6syh3DxS+Qp6v1oe8ISc= From: Benjamin Somers To: gregkh@linuxfoundation.org, linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org Cc: ~lkcamp/patches@lists.sr.ht, helen.koike@collabora.com Subject: [PATCH] staging: rtl8723bs: Fix spacing issues Date: Tue, 30 Jul 2024 07:05:18 +0000 Message-Id: <20240730070518.2850-1-benjamin.somers@resel.fr> X-Mailer: git-send-email 2.20.1 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" This patch removes superfluous tabs at the beginning of the file and commented includes Signed-off-by: Benjamin Somers --- This is my first patch to the kernel --- .../rtl8723bs/include/osdep_service_linux.h | 72 +++++++++---------- 1 file changed, 35 insertions(+), 37 deletions(-) diff --git a/drivers/staging/rtl8723bs/include/osdep_service_linux.h b/driv= ers/staging/rtl8723bs/include/osdep_service_linux.h index 188ed7e26..2ec54f9e1 100644 --- a/drivers/staging/rtl8723bs/include/osdep_service_linux.h +++ b/drivers/staging/rtl8723bs/include/osdep_service_linux.h @@ -7,43 +7,41 @@ #ifndef __OSDEP_LINUX_SERVICE_H_ #define __OSDEP_LINUX_SERVICE_H_ =20 - #include - #include - #include - #include - #include - #include - #include - #include - /* include */ - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include /* for struct tasklet_struct */ - #include - #include - #include - #include - -/* #include */ - #include - #include - - struct __queue { - struct list_head queue; - spinlock_t lock; - }; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include /* for struct tasklet_struct */ +#include +#include +#include +#include + +#include +#include + +struct __queue { + struct list_head queue; + spinlock_t lock; +}; =20 static inline struct list_head *get_next(struct list_head *list) { --=20 2.20.1