The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] usb: legousbtower: remove changelog, tracked in git
@ 2026-05-14 18:47 Elliot Tester
  2026-05-15  5:58 ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Elliot Tester @ 2026-05-14 18:47 UTC (permalink / raw)
  To: gregkh; +Cc: linux-usb, linux-kernel, Elliot Tester

Signed-off-by: Elliot Tester <elliotctester1@gmail.com>
---
 drivers/usb/misc/legousbtower.c | 61 ---------------------------------
 1 file changed, 61 deletions(-)

diff --git a/drivers/usb/misc/legousbtower.c b/drivers/usb/misc/legousbtower.c
index 052ffc2e7..e34777c68 100644
--- a/drivers/usb/misc/legousbtower.c
+++ b/drivers/usb/misc/legousbtower.c
@@ -8,67 +8,6 @@
  * derived from USB Skeleton driver - 0.5
  * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
  *
- * History:
- *
- * 2001-10-13 - 0.1 js
- *   - first version
- * 2001-11-03 - 0.2 js
- *   - simplified buffering, one-shot URBs for writing
- * 2001-11-10 - 0.3 js
- *   - removed IOCTL (setting power/mode is more complicated, postponed)
- * 2001-11-28 - 0.4 js
- *   - added vendor commands for mode of operation and power level in open
- * 2001-12-04 - 0.5 js
- *   - set IR mode by default (by oversight 0.4 set VLL mode)
- * 2002-01-11 - 0.5? pcchan
- *   - make read buffer reusable and work around bytes_to_write issue between
- *     uhci and legusbtower
- * 2002-09-23 - 0.52 david (david@csse.uwa.edu.au)
- *   - imported into lejos project
- *   - changed wake_up to wake_up_interruptible
- *   - changed to use lego0 rather than tower0
- *   - changed dbg() to use __func__ rather than deprecated __func__
- * 2003-01-12 - 0.53 david (david@csse.uwa.edu.au)
- *   - changed read and write to write everything or
- *     timeout (from a patch by Chris Riesen and Brett Thaeler driver)
- *   - added ioctl functionality to set timeouts
- * 2003-07-18 - 0.54 davidgsf (david@csse.uwa.edu.au)
- *   - initial import into LegoUSB project
- *   - merge of existing LegoUSB.c driver
- * 2003-07-18 - 0.56 davidgsf (david@csse.uwa.edu.au)
- *   - port to 2.6 style driver
- * 2004-02-29 - 0.6 Juergen Stuber <starblue@users.sourceforge.net>
- *   - fix locking
- *   - unlink read URBs which are no longer needed
- *   - allow increased buffer size, eliminates need for timeout on write
- *   - have read URB running continuously
- *   - added poll
- *   - forbid seeking
- *   - added nonblocking I/O
- *   - changed back __func__ to __func__
- *   - read and log tower firmware version
- *   - reset tower on probe, avoids failure of first write
- * 2004-03-09 - 0.7 Juergen Stuber <starblue@users.sourceforge.net>
- *   - timeout read now only after inactivity, shorten default accordingly
- * 2004-03-11 - 0.8 Juergen Stuber <starblue@users.sourceforge.net>
- *   - log major, minor instead of possibly confusing device filename
- *   - whitespace cleanup
- * 2004-03-12 - 0.9 Juergen Stuber <starblue@users.sourceforge.net>
- *   - normalize whitespace in debug messages
- *   - take care about endianness in control message responses
- * 2004-03-13 - 0.91 Juergen Stuber <starblue@users.sourceforge.net>
- *   - make default intervals longer to accommodate current EHCI driver
- * 2004-03-19 - 0.92 Juergen Stuber <starblue@users.sourceforge.net>
- *   - replaced atomic_t by memory barriers
- * 2004-04-21 - 0.93 Juergen Stuber <starblue@users.sourceforge.net>
- *   - wait for completion of write urb in release (needed for remotecontrol)
- *   - corrected poll for write direction (missing negation)
- * 2004-04-22 - 0.94 Juergen Stuber <starblue@users.sourceforge.net>
- *   - make device locking interruptible
- * 2004-04-30 - 0.95 Juergen Stuber <starblue@users.sourceforge.net>
- *   - check for valid udev on resubmitting and unlinking urbs
- * 2004-08-03 - 0.96 Juergen Stuber <starblue@users.sourceforge.net>
- *   - move reset into open to clean out spurious data
  */
 
 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
-- 
2.54.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] usb: legousbtower: remove changelog, tracked in git
  2026-05-14 18:47 [PATCH] usb: legousbtower: remove changelog, tracked in git Elliot Tester
@ 2026-05-15  5:58 ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2026-05-15  5:58 UTC (permalink / raw)
  To: Elliot Tester; +Cc: linux-usb, linux-kernel

On Thu, May 14, 2026 at 08:47:06PM +0200, Elliot Tester wrote:
> Signed-off-by: Elliot Tester <elliotctester1@gmail.com>
> ---
>  drivers/usb/misc/legousbtower.c | 61 ---------------------------------
>  1 file changed, 61 deletions(-)
> 
> diff --git a/drivers/usb/misc/legousbtower.c b/drivers/usb/misc/legousbtower.c
> index 052ffc2e7..e34777c68 100644
> --- a/drivers/usb/misc/legousbtower.c
> +++ b/drivers/usb/misc/legousbtower.c
> @@ -8,67 +8,6 @@
>   * derived from USB Skeleton driver - 0.5
>   * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
>   *
> - * History:
> - *
> - * 2001-10-13 - 0.1 js
> - *   - first version
> - * 2001-11-03 - 0.2 js
> - *   - simplified buffering, one-shot URBs for writing
> - * 2001-11-10 - 0.3 js
> - *   - removed IOCTL (setting power/mode is more complicated, postponed)
> - * 2001-11-28 - 0.4 js
> - *   - added vendor commands for mode of operation and power level in open
> - * 2001-12-04 - 0.5 js
> - *   - set IR mode by default (by oversight 0.4 set VLL mode)
> - * 2002-01-11 - 0.5? pcchan
> - *   - make read buffer reusable and work around bytes_to_write issue between
> - *     uhci and legusbtower
> - * 2002-09-23 - 0.52 david (david@csse.uwa.edu.au)
> - *   - imported into lejos project
> - *   - changed wake_up to wake_up_interruptible
> - *   - changed to use lego0 rather than tower0
> - *   - changed dbg() to use __func__ rather than deprecated __func__
> - * 2003-01-12 - 0.53 david (david@csse.uwa.edu.au)
> - *   - changed read and write to write everything or
> - *     timeout (from a patch by Chris Riesen and Brett Thaeler driver)
> - *   - added ioctl functionality to set timeouts
> - * 2003-07-18 - 0.54 davidgsf (david@csse.uwa.edu.au)
> - *   - initial import into LegoUSB project
> - *   - merge of existing LegoUSB.c driver
> - * 2003-07-18 - 0.56 davidgsf (david@csse.uwa.edu.au)
> - *   - port to 2.6 style driver
> - * 2004-02-29 - 0.6 Juergen Stuber <starblue@users.sourceforge.net>
> - *   - fix locking
> - *   - unlink read URBs which are no longer needed
> - *   - allow increased buffer size, eliminates need for timeout on write
> - *   - have read URB running continuously
> - *   - added poll
> - *   - forbid seeking
> - *   - added nonblocking I/O
> - *   - changed back __func__ to __func__
> - *   - read and log tower firmware version
> - *   - reset tower on probe, avoids failure of first write
> - * 2004-03-09 - 0.7 Juergen Stuber <starblue@users.sourceforge.net>
> - *   - timeout read now only after inactivity, shorten default accordingly
> - * 2004-03-11 - 0.8 Juergen Stuber <starblue@users.sourceforge.net>
> - *   - log major, minor instead of possibly confusing device filename
> - *   - whitespace cleanup
> - * 2004-03-12 - 0.9 Juergen Stuber <starblue@users.sourceforge.net>
> - *   - normalize whitespace in debug messages
> - *   - take care about endianness in control message responses
> - * 2004-03-13 - 0.91 Juergen Stuber <starblue@users.sourceforge.net>
> - *   - make default intervals longer to accommodate current EHCI driver
> - * 2004-03-19 - 0.92 Juergen Stuber <starblue@users.sourceforge.net>
> - *   - replaced atomic_t by memory barriers
> - * 2004-04-21 - 0.93 Juergen Stuber <starblue@users.sourceforge.net>
> - *   - wait for completion of write urb in release (needed for remotecontrol)
> - *   - corrected poll for write direction (missing negation)
> - * 2004-04-22 - 0.94 Juergen Stuber <starblue@users.sourceforge.net>
> - *   - make device locking interruptible
> - * 2004-04-30 - 0.95 Juergen Stuber <starblue@users.sourceforge.net>
> - *   - check for valid udev on resubmitting and unlinking urbs
> - * 2004-08-03 - 0.96 Juergen Stuber <starblue@users.sourceforge.net>
> - *   - move reset into open to clean out spurious data
>   */
>  
>  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
> -- 
> 2.54.0
> 

Hi,

This is the friendly patch-bot of Greg Kroah-Hartman.  You have sent him
a patch that has triggered this response.  He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created.  Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.

You are receiving this message because of the following common error(s)
as indicated below:

- You did not specify a description of why the patch is needed, or
  possibly, any description at all, in the email body.  Please read the
  section entitled "The canonical patch format" in the kernel file,
  Documentation/process/submitting-patches.rst for what is needed in
  order to properly describe the change.

If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.

thanks,

greg k-h's patch email bot

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-05-15  5:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-14 18:47 [PATCH] usb: legousbtower: remove changelog, tracked in git Elliot Tester
2026-05-15  5:58 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox