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

Commit 1023fdc4 authored by Johannes Berg's avatar Johannes Berg
Browse files

iwlwifi: move DVM code into subdirectory



Since we're working on another mode/driver
inside iwlwifi, move the current one into a
subdirectory to more cleanly separate the
code. While at it, rename all the files.

Reviewed-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 20041ea6
Loading
Loading
Loading
Loading
+2 −13
Original line number Diff line number Diff line
# DVM
obj-$(CONFIG_IWLDVM)   += iwldvm.o
iwldvm-objs		:= iwl-agn.o iwl-agn-rs.o iwl-mac80211.o
iwldvm-objs		+= iwl-ucode.o iwl-agn-tx.o
iwldvm-objs		+= iwl-agn-lib.o iwl-agn-calib.o
iwldvm-objs		+= iwl-agn-tt.o iwl-agn-sta.o iwl-agn-rx.o
iwldvm-objs		+= iwl-eeprom.o iwl-power.o
iwldvm-objs		+= iwl-scan.o iwl-led.o
iwldvm-objs		+= iwl-agn-rxon.o iwl-agn-devices.o

iwldvm-$(CONFIG_IWLWIFI_DEBUGFS) += iwl-debugfs.o
iwldvm-$(CONFIG_IWLWIFI_DEVICE_TESTMODE) += iwl-testmode.o
obj-$(CONFIG_IWLDVM)	+= dvm/

CFLAGS_iwl-devtrace.o := -I$(src)

# WIFI
# common
obj-$(CONFIG_IWLWIFI)	+= iwlwifi.o
iwlwifi-objs		+= iwl-io.o
iwlwifi-objs		+= iwl-drv.o
+13 −0
Original line number Diff line number Diff line
# DVM
obj-$(CONFIG_IWLDVM)	+= iwldvm.o
iwldvm-objs		+= main.o rs.o mac80211.o ucode.o tx.o
iwldvm-objs		+= lib.o calib.o tt.o sta.o rx.o

iwldvm-objs		+= eeprom.o power.o
iwldvm-objs		+= scan.o led.o
iwldvm-objs		+= rxon.o devices.o

iwldvm-$(CONFIG_IWLWIFI_DEBUGFS) += debugfs.o
iwldvm-$(CONFIG_IWLWIFI_DEVICE_TESTMODE) += testmode.o

ccflags-y += -D__CHECK_ENDIAN__ -I$(src)/../
+2 −1
Original line number Diff line number Diff line
@@ -63,9 +63,10 @@
#ifndef __iwl_agn_h__
#define __iwl_agn_h__

#include "iwl-dev.h"
#include "iwl-config.h"

#include "dev.h"

/* The first 11 queues (0-10) are used otherwise */
#define IWLAGN_FIRST_AMPDU_QUEUE	11

+4 −3
Original line number Diff line number Diff line
@@ -63,10 +63,11 @@
#include <linux/slab.h>
#include <net/mac80211.h>

#include "iwl-dev.h"
#include "iwl-agn-calib.h"
#include "iwl-trans.h"
#include "iwl-agn.h"

#include "dev.h"
#include "calib.h"
#include "agn.h"

/*****************************************************************************
 * INIT calibrations framework
+2 −2
Original line number Diff line number Diff line
@@ -62,8 +62,8 @@
#ifndef __iwl_calib_h__
#define __iwl_calib_h__

#include "iwl-dev.h"
#include "iwl-commands.h"
#include "dev.h"
#include "commands.h"

void iwl_chain_noise_calibration(struct iwl_priv *priv);
void iwl_sensitivity_calibration(struct iwl_priv *priv);
Loading