public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Philipp Hortmann <philipp.g.hortmann@gmail.com>
To: "Dominik Karol Piątkowski"
	<dominik.karol.piatkowski@protonmail.com>,
	gregkh@linuxfoundation.org
Cc: linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 00/14] staging: vt6655: Tidy up s_uGetDataDuration function
Date: Wed, 18 Sep 2024 23:08:21 +0200	[thread overview]
Message-ID: <34860faf-b4c5-45ff-bbed-370a12c88187@gmail.com> (raw)
In-Reply-To: <20240918191959.51539-1-dominik.karol.piatkowski@protonmail.com>

On 9/18/24 21:20, Dominik Karol Piątkowski wrote:
> This series tidies up s_uGetDataDuration function by renaming its parameters and
> variables from camel case (including Hungarian notation) to snake case, and
> fixing its declaration formatting.
> 
> Signed-off-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@protonmail.com>
> 
> Dominik Karol Piątkowski (14):
>    staging: vt6655: s_uGetDataDuration: Rename pDevice parameter
>    staging: vt6655: s_uGetDataDuration: Rename byDurType parameter
>    staging: vt6655: s_uGetDataDuration: Rename cbFrameLength parameter
>    staging: vt6655: s_uGetDataDuration: Rename byPktType parameter
>    staging: vt6655: s_uGetDataDuration: Rename wRate parameter
>    staging: vt6655: s_uGetDataDuration: Rename bNeedAck parameter
>    staging: vt6655: s_uGetDataDuration: Rename uFragIdx parameter
>    staging: vt6655: s_uGetDataDuration: Rename cbLastFragmentSize
>      parameter
>    staging: vt6655: s_uGetDataDuration: Rename uMACfragNum parameter
>    staging: vt6655: s_uGetDataDuration: Rename byFBOption parameter
>    staging: vt6655: s_uGetDataDuration: Rename bLastFrag variable
>    staging: vt6655: s_uGetDataDuration: Rename uAckTime variable
>    staging: vt6655: s_uGetDataDuration: Rename uNextPktTime variable
>    staging: vt6655: s_uGetDataDuration: Fix declaration formatting
> 
>   drivers/staging/vt6655/rxtx.c | 110 ++++++++++++++++------------------
>   1 file changed, 53 insertions(+), 57 deletions(-)
> 

Hi Dominik,

now you have put quit some afford into this patch series. Thank you.

If we change the camel case variables this way we need thousands of 
patches to fix this driver. Therefore we typically change always one 
variable for the entire driver and not for one function.

The following is just my personal opinion:
You can keep working on this driver and your patches will remain in the 
git. But I think I will propose to delete this driver. Reason is that it 
supports maximum 54MBit/s and the connection is always weak. Its form 
factor is mini PCI that is really old. I use an adapter from mini PCI to 
PCI to get it into my Desktop PC. It furthermore is not buyable anymore.

I like to focus on the hardware that is really well useable and on the 
market available:

rtl8192e
150MBit/s -> 12,5MByte/s real steady transfer.
buyable for some bugs as miniPCIe Card.


rtl8723bs
150MBit/s -> >3MByte/s can be reached with the Notebook:
Odys Trendbook Next 14
(Fedora with xfce) (I would prefer the one with 4GB RAM but I have only 2GB)
buyable for not to much money.
We can catch this devices because they run on Windows 10 which will not 
be supported after fall 2025
The Driver has 146 Files with 70000 Lines. I think we can remove a lot 
because the bluetooth part is not used anymore...

There are more device drivers which need our attention...

Thanks

Bye Philipp






















  parent reply	other threads:[~2024-09-18 21:08 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-18 19:20 [PATCH 00/14] staging: vt6655: Tidy up s_uGetDataDuration function Dominik Karol Piątkowski
2024-09-18 19:20 ` [PATCH 01/14] staging: vt6655: s_uGetDataDuration: Rename pDevice parameter Dominik Karol Piątkowski
2024-09-18 19:20 ` [PATCH 02/14] staging: vt6655: s_uGetDataDuration: Rename byDurType parameter Dominik Karol Piątkowski
2024-09-18 19:21 ` [PATCH 03/14] staging: vt6655: s_uGetDataDuration: Rename cbFrameLength parameter Dominik Karol Piątkowski
2024-09-18 19:21 ` [PATCH 04/14] staging: vt6655: s_uGetDataDuration: Rename byPktType parameter Dominik Karol Piątkowski
2024-09-18 19:21 ` [PATCH 05/14] staging: vt6655: s_uGetDataDuration: Rename wRate parameter Dominik Karol Piątkowski
2024-09-18 19:21 ` [PATCH 06/14] staging: vt6655: s_uGetDataDuration: Rename bNeedAck parameter Dominik Karol Piątkowski
2024-09-18 19:21 ` [PATCH 07/14] staging: vt6655: s_uGetDataDuration: Rename uFragIdx parameter Dominik Karol Piątkowski
2024-09-18 19:21 ` [PATCH 08/14] staging: vt6655: s_uGetDataDuration: Rename cbLastFragmentSize parameter Dominik Karol Piątkowski
2024-09-18 19:21 ` [PATCH 09/14] staging: vt6655: s_uGetDataDuration: Rename uMACfragNum parameter Dominik Karol Piątkowski
2024-09-18 19:21 ` [PATCH 10/14] staging: vt6655: s_uGetDataDuration: Rename byFBOption parameter Dominik Karol Piątkowski
2024-09-18 19:21 ` [PATCH 11/14] staging: vt6655: s_uGetDataDuration: Rename bLastFrag variable Dominik Karol Piątkowski
2024-09-18 19:21 ` [PATCH 12/14] staging: vt6655: s_uGetDataDuration: Rename uAckTime variable Dominik Karol Piątkowski
2024-09-18 19:21 ` [PATCH 13/14] staging: vt6655: s_uGetDataDuration: Rename uNextPktTime variable Dominik Karol Piątkowski
2024-09-18 19:22 ` [PATCH 14/14] staging: vt6655: s_uGetDataDuration: Fix declaration formatting Dominik Karol Piątkowski
2024-09-18 21:08 ` Philipp Hortmann [this message]
2024-09-19 14:49   ` [PATCH 00/14] staging: vt6655: Tidy up s_uGetDataDuration function Dominik Karol Piątkowski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=34860faf-b4c5-45ff-bbed-370a12c88187@gmail.com \
    --to=philipp.g.hortmann@gmail.com \
    --cc=dominik.karol.piatkowski@protonmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-staging@lists.linux.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox