From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-184.mta0.migadu.com (out-184.mta0.migadu.com [91.218.175.184]) (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 6B396334C05 for ; Wed, 10 Jun 2026 01:43:22 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.184 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781055807; cv=none; b=OyYD8w8zHyevPU15aQN9eufqoVWcJNoNnh2BRaLxs5Pszr5nJtdzxHEEuoCGbmm0iYyrkmoDvOUoMSLUTRg72SuqwN4RswNnQv7T2wswnIe/mBPmwCvtkMGsRghfsnK51g+XJzha+IPP0sBH4JNn1P8RkGkMWXvMnnxMmnJ7Qto= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781055807; c=relaxed/simple; bh=74NrG9/jmyPeFDj3AdkEY/WptLfd808TosNVx+6Y7U0=; h=From:Subject:Date:Message-Id:MIME-Version:Content-Type:To:Cc; b=cA7KxAxQV62VgzG9g4ZkMYZynqJLVdjPlY6MdTATnktgrd7bEfe/mkGyZTJVEC6f+jZWnU04uXfb1NIKxz+gnjn2FUUpovM/z6A8ZgkoJHv5PsOuf6J8q1cz9O0mLSWjxnCA+nhNwwoGTVM8N7WLERzG/GiLZCEHheb1Ml2AFIE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=fail (p=none dis=none) header.from=linux.com; spf=pass smtp.mailfrom=linux.aimannajjar.com; arc=none smtp.client-ip=91.218.175.184 Authentication-Results: smtp.subspace.kernel.org; dmarc=fail (p=none dis=none) header.from=linux.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.aimannajjar.com X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Aiman Najjar Subject: [PATCH 0/2] staging: rtl8723bs: enum labels naming, coding style Date: Tue, 09 Jun 2026 21:42:54 -0400 Message-Id: <20260609-rtl8723bs-code-style-v1-0-daa0e85359a6@linux.com> Precedence: bulk X-Mailing-List: linux-staging@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-B4-Tracking: v=1; b=H4sIAB7BKGoC/yXMTQ6CMBBA4auQWTvJUJP+eBXjwpYBhhAwnWI0h Ltbdfkt3ttBOQsrXJodMj9FZV0q2lMDabwvA6N01WDIWLIUMJfZO3OOimntGLW8Z0byro2eonU hQE0fmXt5/bbX29+6xYlT+b7gOD6r3lH2eAAAAA== X-Change-ID: 20260609-rtl8723bs-code-style-0871b80b6799 To: Greg Kroah-Hartman Cc: kernel-janitors@vger.kernel.org, linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org, Aiman Najjar X-Developer-Signature: v=1; a=ed25519-sha256; t=1781055789; l=1079; i=aiman@linux.com; s=20260606; h=from:subject:message-id; bh=74NrG9/jmyPeFDj3AdkEY/WptLfd808TosNVx+6Y7U0=; b=P7hCeWskkj9TR/cW9VXKW7Zr2wTI0+SDAL/9nEKJqWUPDL28njJDhrE4F0F2I2Xy4BtZ7mtKw XO9CYzUZkjAB3XBjbJ3g+4lCSuHRJIg0nIfQeQ8qmWi+MerP8W0MfJc X-Developer-Key: i=aiman@linux.com; a=ed25519; pk=iKg5UkqF2CmKvQwe+Jp8Cf4JOcIHoyvApdVll0sJHu8= X-Migadu-Flow: FLOW_OUT Enum labels generated by token-pasting macros adopt camel case. This patch removes the use of macro to generate the enum label names and adopts new captialized names. Signed-off-by: Aiman Najjar --- Aiman Najjar (2): staging: rtl8723bs: drop GEN_CMD_CODE macro and capitalize labels staging: rtl8723bs: drop GEN_EVT_CODE macro and capitalize labels drivers/staging/rtl8723bs/core/rtw_ap.c | 4 +- drivers/staging/rtl8723bs/core/rtw_cmd.c | 190 +++++++++++------------ drivers/staging/rtl8723bs/core/rtw_mlme.c | 4 +- drivers/staging/rtl8723bs/core/rtw_mlme_ext.c | 30 ++-- drivers/staging/rtl8723bs/include/rtw_cmd.h | 154 +++++++++--------- drivers/staging/rtl8723bs/include/rtw_event.h | 4 - drivers/staging/rtl8723bs/include/rtw_mlme_ext.h | 54 +++---- 7 files changed, 214 insertions(+), 226 deletions(-) --- base-commit: ad4605d69bab07941460db0a0cba88ac5c3302cf change-id: 20260609-rtl8723bs-code-style-0871b80b6799 Best regards, -- Aiman Najjar