lkml.org 
[lkml]   [2020]   [Oct]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 02/23] wfx: add Makefile/Kconfig
    Date
    From: Jérôme Pouiller <jerome.pouiller@silabs.com>

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    ---
    drivers/net/wireless/silabs/wfx/Kconfig | 8 ++++++++
    drivers/net/wireless/silabs/wfx/Makefile | 25 ++++++++++++++++++++++++
    2 files changed, 33 insertions(+)
    create mode 100644 drivers/net/wireless/silabs/wfx/Kconfig
    create mode 100644 drivers/net/wireless/silabs/wfx/Makefile

    diff --git a/drivers/net/wireless/silabs/wfx/Kconfig b/drivers/net/wireless/silabs/wfx/Kconfig
    new file mode 100644
    index 000000000000..83ee4d0ca8c6
    --- /dev/null
    +++ b/drivers/net/wireless/silabs/wfx/Kconfig
    @@ -0,0 +1,8 @@
    +config WFX
    + tristate "Silicon Labs wireless chips WF200 and further"
    + depends on MAC80211
    + depends on MMC || !MMC # do not allow WFX=y if MMC=m
    + depends on (SPI || MMC)
    + help
    + This is a driver for Silicons Labs WFxxx series (WF200 and further)
    + chipsets. This chip can be found on SPI or SDIO buses.
    diff --git a/drivers/net/wireless/silabs/wfx/Makefile b/drivers/net/wireless/silabs/wfx/Makefile
    new file mode 100644
    index 000000000000..0e0cc982ceab
    --- /dev/null
    +++ b/drivers/net/wireless/silabs/wfx/Makefile
    @@ -0,0 +1,25 @@
    +# SPDX-License-Identifier: GPL-2.0
    +
    +# Necessary for CREATE_TRACE_POINTS
    +CFLAGS_debug.o = -I$(src)
    +
    +wfx-y := \
    + bh.o \
    + hwio.o \
    + fwio.o \
    + hif_tx_mib.o \
    + hif_tx.o \
    + hif_rx.o \
    + queue.o \
    + data_tx.o \
    + data_rx.o \
    + scan.o \
    + sta.o \
    + key.o \
    + main.o \
    + sta.o \
    + debug.o
    +wfx-$(CONFIG_SPI) += bus_spi.o
    +wfx-$(subst m,y,$(CONFIG_MMC)) += bus_sdio.o
    +
    +obj-$(CONFIG_WFX) += wfx.o
    --
    2.28.0
    \
     
     \ /
      Last update: 2020-10-12 12:49    [W:3.556 / U:0.016 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site