Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fe26c474 authored by Akshay Pandit's avatar Akshay Pandit Committed by Gerrit - the friendly Code Review server
Browse files

msm: veth_ipa: Add VETH IPA driver



Add VETH IPA driver for msmnile gvmr.

Change-Id: I602d2d56d7213923ade51a47c965149e4969fac9
Acked-by: default avatarSarosh Hasan <sarohasa@codeaurora.org>
Signed-off-by: default avatarAkshay Pandit <pandit@codeaurora.org>
parent 08db65b8
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -96,6 +96,14 @@ config IPA_WDI_UNIFIED_API
	  The IPA WDI unified API supports all WDI versions through a unified
	  interface.

config VETH_IPA
        tristate "VETH_IPA Network Interface Driver Support"
        help
          Enables EMAC Ethernet Front end driver.
          Register net device and configure VETH0 iface. This driver will
          configure EMAC IPA offload channels with help of a backend driver
          running on GVM Host.

config USB_BAM
	tristate "USB BAM Driver"
	depends on SPS && USB_GADGET
+1 −0
Original line number Diff line number Diff line
@@ -14,3 +14,4 @@ obj-$(CONFIG_MSM_11AD) += msm_11ad/
obj-$(CONFIG_EP_PCIE) += ep_pcie/
obj-$(CONFIG_MSM_MHI_DEV) += mhi_dev/
obj-$(CONFIG_IPA_ETH) += ethernet/
obj-$(CONFIG_VETH_IPA) += veth_ipa/
+3 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only

obj-$(CONFIG_VETH_IPA) += veth_emac_mgt.o veth_ipa.o
Loading