All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/10] backports: add wwan device drivers
@ 2013-08-15 12:39 Patrick Ziegler
  2013-08-16  3:03 ` Luis R. Rodriguez
  0 siblings, 1 reply; 2+ messages in thread
From: Patrick Ziegler @ 2013-08-15 12:39 UTC (permalink / raw)
  To: Luis R. Rodriguez; +Cc: backports

This adds wwan drivers for mobile broadband devices.
Patches 1 to 8 add missing stuff required for the wwan drivers.
Patch 9 adds device drivers.

Changes v2:
- cosmetic changes
- remove pci function when pci was not configured

Changes v3:
- remove needless CONFIG_USB check
- new defconfig for wwan device drivers

Patrick Ziegler (10):
  backports: fix build errors for old kernel versions without PCI
    support
  backports: add eth_prepare_mac_addr_change() and
    eth_commit_mac_addr_change()
  backports: define PM_EVENT_AUTO
  backports: add usb_translate_errors()
  backports: add usb_endpoint_maxp()
  backports: update enum usb_device_speed with USB_SPEED_SUPER
  backports: include headers directly if math64 header is missing
  backports: define phys_addr_t for ARM on kernel version < 2.6.25
  backports: add wwan device drivers
  backports: add defconfig for wwan device drivers

 backport/Kconfig                                   |  2 +
 backport/Makefile.kernel                           |  3 ++
 backport/backport-include/linux/etherdevice.h      |  8 ++++
 backport/backport-include/linux/if.h               |  4 ++
 backport/backport-include/linux/math64.h           |  3 ++
 backport/backport-include/linux/pm.h               |  4 ++
 backport/backport-include/linux/types.h            |  4 +-
 backport/backport-include/linux/usb.h              | 15 ++++++++
 backport/backport-include/linux/usb/ch9.h          | 45 ++++++++++++++++++++++
 backport/compat/compat-2.6.25.c                    |  2 +
 backport/compat/compat-2.6.28.c                    |  1 +
 backport/compat/compat-3.9.c                       | 33 ++++++++++++++++
 backport/defconfigs/wwan                           |  6 +++
 copy-list                                          | 14 +++++++
 .../network/0001-netdev_ops/qmi_wwan.patch         | 11 ++++++
 .../network/0001-netdev_ops/sierra_net.patch       | 11 ++++++
 .../drivers_net_usb_cdc_mbim.patch                 | 12 ++++++
 .../drivers_net_usb_cdc_ncm.patch                  | 12 ++++++
 .../drivers_net_usb_qmi_wwan.patch                 | 12 ++++++
 .../drivers_net_usb_sierra_net.patch               | 12 ++++++
 .../drivers_usb_class_cdc-wdm.patch                | 12 ++++++
 21 files changed, 224 insertions(+), 2 deletions(-)
 create mode 100644 backport/backport-include/linux/usb/ch9.h
 create mode 100644 backport/defconfigs/wwan
 create mode 100644 patches/collateral-evolutions/network/0001-netdev_ops/qmi_wwan.patch
 create mode 100644 patches/collateral-evolutions/network/0001-netdev_ops/sierra_net.patch
 create mode 100644 patches/collateral-evolutions/network/62-usb_driver_lpm/drivers_net_usb_cdc_mbim.patch
 create mode 100644 patches/collateral-evolutions/network/62-usb_driver_lpm/drivers_net_usb_cdc_ncm.patch
 create mode 100644 patches/collateral-evolutions/network/62-usb_driver_lpm/drivers_net_usb_qmi_wwan.patch
 create mode 100644 patches/collateral-evolutions/network/62-usb_driver_lpm/drivers_net_usb_sierra_net.patch
 create mode 100644 patches/collateral-evolutions/network/62-usb_driver_lpm/drivers_usb_class_cdc-wdm.patch

-- 
1.8.1.2


-- 
Dipl.-Inf. (FH) Patrick Ziegler

University Of Applied Sciences
Kaiserslautern

Amerikastrasse 1
D-66482 Zweibruecken
Germany

Phone:  +49 631 3724 5526
Mail:   patrick.ziegler@fh-kl.de
PGP KeyID 0xB4796B8C

http://www.fh-kl.de
http://www.fh-kl.de/fachbereiche/imst/iuk-knowhow.html

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

* Re: [PATCH v3 00/10] backports: add wwan device drivers
  2013-08-15 12:39 [PATCH v3 00/10] backports: add wwan device drivers Patrick Ziegler
@ 2013-08-16  3:03 ` Luis R. Rodriguez
  0 siblings, 0 replies; 2+ messages in thread
From: Luis R. Rodriguez @ 2013-08-16  3:03 UTC (permalink / raw)
  To: Patrick Ziegler; +Cc: Luis R. Rodriguez, backports

[-- Attachment #1: Type: text/plain, Size: 1086 bytes --]

On Thu, Aug 15, 2013 at 02:39:49PM +0200, Patrick Ziegler wrote:
> This adds wwan drivers for mobile broadband devices.
> Patches 1 to 8 add missing stuff required for the wwan drivers.
> Patch 9 adds device drivers.
> 
> Changes v2:
> - cosmetic changes
> - remove pci function when pci was not configured
> 
> Changes v3:
> - remove needless CONFIG_USB check
> - new defconfig for wwan device drivers
> 
> Patrick Ziegler (10):
>   backports: fix build errors for old kernel versions without PCI
>     support
>   backports: add eth_prepare_mac_addr_change() and
>     eth_commit_mac_addr_change()
>   backports: define PM_EVENT_AUTO
>   backports: add usb_translate_errors()
>   backports: add usb_endpoint_maxp()
>   backports: update enum usb_device_speed with USB_SPEED_SUPER
>   backports: include headers directly if math64 header is missing
>   backports: define phys_addr_t for ARM on kernel version < 2.6.25
>   backports: add wwan device drivers
>   backports: add defconfig for wwan device drivers

Awesome, thanks applied and pushed!

  Luis

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

end of thread, other threads:[~2013-08-16  2:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-15 12:39 [PATCH v3 00/10] backports: add wwan device drivers Patrick Ziegler
2013-08-16  3:03 ` Luis R. Rodriguez

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.