[U-Boot] [PATCH] Don't claim that we speak AT

When we claim that we speak AT, Network Manager will send query us with AT commands.
Signed-off-by: Russ Dill Russ.Dill@gmail.com --- drivers/serial/usbtty.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/serial/usbtty.c b/drivers/serial/usbtty.c index 2624e6f..1ed0e4d 100644 --- a/drivers/serial/usbtty.c +++ b/drivers/serial/usbtty.c @@ -178,7 +178,7 @@ static struct acm_config_desc acm_configuration_descriptors[NUM_CONFIGS] = { .bInterfaceClass = COMMUNICATIONS_INTERFACE_CLASS_CONTROL, .bInterfaceSubClass = COMMUNICATIONS_ACM_SUBCLASS, - .bInterfaceProtocol = COMMUNICATIONS_V25TER_PROTOCOL, + .bInterfaceProtocol = COMMUNICATIONS_NO_PROTOCOL, .iInterface = STR_CTRL_INTERFACE, }, .usb_class_header = {

On Thursday 02 April 2009 09:06:13 Russ Dill wrote:
... will send query us with ...
one of those words should get dropped ... probably "send": "will query us with" ...
drivers/serial/usbtty.c | 2 +-
please put this info into the subject/summary. a simple "usbtty: " prefix in the subject would be fine. -mike

On Thu, Apr 2, 2009 at 6:16 AM, Mike Frysinger vapier@gentoo.org wrote:
On Thursday 02 April 2009 09:06:13 Russ Dill wrote:
... will send query us with ...
one of those words should get dropped ... probably "send": "will query us with" ...
drivers/serial/usbtty.c | 2 +-
please put this info into the subject/summary. a simple "usbtty: " prefix in the subject would be fine. -mike
Sorry, I'm too sleep deprived, let me NAK my own patch here. The kernel won't recognize a device with PROTO_NONE. Maybe in the future this is how serial consoles should be handled.
participants (2)
-
Mike Frysinger
-
Russ Dill