netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Larry Finger <Larry.Finger-tQ5ms3gMjBLk1uMJSBkQmQ@public.gmane.org>
To: linville-2XuSBdqkA4R54TAoqtyWWQ@public.gmane.org
Cc: linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Larry Finger
	<Larry.Finger-tQ5ms3gMjBLk1uMJSBkQmQ@public.gmane.org>,
	netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	jcheung-IBi9RG/b67k@public.gmane.org,
	machen-IBi9RG/b67k@public.gmane.org,
	mmarek-AlSwsSmVLrQ@public.gmane.org
Subject: [RFC/RFT 27/27] rtlwifi: rtl8188ee: Enable build of new driver
Date: Mon, 25 Feb 2013 18:13:39 -0600	[thread overview]
Message-ID: <1361837619-2985-28-git-send-email-Larry.Finger@lwfinger.net> (raw)
In-Reply-To: <1361837619-2985-1-git-send-email-Larry.Finger-tQ5ms3gMjBLk1uMJSBkQmQ@public.gmane.org>

These changes enable building the new driver.

Signed-off-by: Larry Finger <Larry.Finger-tQ5ms3gMjBLk1uMJSBkQmQ@public.gmane.org>
Cc: jcheung-IBi9RG/b67k@public.gmane.org
Cc: machen-IBi9RG/b67k@public.gmane.org
Cc: mmarek-AlSwsSmVLrQ@public.gmane.org
---
 drivers/net/wireless/rtlwifi/Kconfig            | 11 +++++++++++
 drivers/net/wireless/rtlwifi/Makefile           |  1 +
 drivers/net/wireless/rtlwifi/rtl8188ee/Makefile | 16 ++++++++++++++++
 3 files changed, 28 insertions(+)
 create mode 100644 drivers/net/wireless/rtlwifi/rtl8188ee/Makefile

diff --git a/drivers/net/wireless/rtlwifi/Kconfig b/drivers/net/wireless/rtlwifi/Kconfig
index b6aa0c4..e42b3a8 100644
--- a/drivers/net/wireless/rtlwifi/Kconfig
+++ b/drivers/net/wireless/rtlwifi/Kconfig
@@ -55,6 +55,17 @@ config RTL8723AE
 
 	If you choose to build it as a module, it will be called rtl8723ae
 
+config RTL8188EE
+	tristate "Realtek RTL8188EE Wireless Network Adapter"
+	depends on MAC80211 && PCI
+	select FW_LOADER
+	select RTLWIFI
+	---help---
+	This is the driver for Realtek RTL8188EE 802.11n PCIe
+	wireless network adapters.
+
+	If you choose to build it as a module, it will be called rtl8188ee
+
 config RTL8192CU
 	tristate "Realtek RTL8192CU/RTL8188CU USB Wireless Network Adapter"
 	depends on RTLWIFI && USB
diff --git a/drivers/net/wireless/rtlwifi/Makefile b/drivers/net/wireless/rtlwifi/Makefile
index 3b1cbac..ff02b87 100644
--- a/drivers/net/wireless/rtlwifi/Makefile
+++ b/drivers/net/wireless/rtlwifi/Makefile
@@ -26,5 +26,6 @@ obj-$(CONFIG_RTL8192CU)		+= rtl8192cu/
 obj-$(CONFIG_RTL8192SE)		+= rtl8192se/
 obj-$(CONFIG_RTL8192DE)		+= rtl8192de/
 obj-$(CONFIG_RTL8723AE)		+= rtl8723ae/
+obj-$(CONFIG_RTL8188EE)		+= rtl8188ee/
 
 ccflags-y += -D__CHECK_ENDIAN__
diff --git a/drivers/net/wireless/rtlwifi/rtl8188ee/Makefile b/drivers/net/wireless/rtlwifi/rtl8188ee/Makefile
new file mode 100644
index 0000000..f3772c9
--- /dev/null
+++ b/drivers/net/wireless/rtlwifi/rtl8188ee/Makefile
@@ -0,0 +1,16 @@
+rtl8188ee-objs :=		\
+		dm.o		\
+		fw.o		\
+		hw.o		\
+		led.o		\
+		phy.o		\
+		pwrseq.o	\
+		pwrseqcmd.o	\
+		rf.o		\
+		sw.o		\
+		table.o		\
+		trx.o
+
+obj-$(CONFIG_RTL8188EE) += rtl8188ee.o
+
+ccflags-y += -D__CHECK_ENDIAN__
-- 
1.8.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  parent reply	other threads:[~2013-02-26  0:13 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-02-26  0:13 [RFC/RFT 00/27] Updates for the rtlwifi family of drivers Larry Finger
2013-02-26  0:13 ` [RFC/RFT 01/27] rtlwifi: Modify the master header for for updates to vendor version 2013.02.07 Larry Finger
2013-02-26  0:13 ` [RFC/RFT 03/27] rtlwifi: Modify files for 2013.02.07 vendor version - part 3 Larry Finger
2013-02-26  0:13 ` [RFC/RFT 04/27] rtlwifi: Modify files for 2013.02.07 vendor version - part 4 Larry Finger
2013-02-26  0:13 ` [RFC/RFT 05/27] " Larry Finger
2013-02-26  0:13 ` [RFC/RFT 06/27] rtlwifi: rtl8192se: Update driver to match vendor driver of 2013.02.07 Larry Finger
2013-02-26  0:13 ` [RFC/RFT 08/27] rtlwifi: rtl8192c: rtl8192ce: Update to " Larry Finger
2013-02-26  0:13 ` [RFC/RFT 10/27] rtlwifi: rtl8188ee: Add new driver - part 1 Larry Finger
2013-02-26  0:13 ` [RFC/RFT 12/27] rtlwifi: rtl8188ee: Add new driver files - part 3 Larry Finger
2013-02-26  0:13 ` [RFC/RFT 13/27] rtlwifi: rtl8188ee: Add files for new driver - part 4 Larry Finger
2013-02-26  0:13 ` [RFC/RFT 14/27] rtlwifi: rtl8188ee: Add files for new driver - part 5 Larry Finger
2013-02-26  0:13 ` [RFC/RFT 16/27] rtlwifi: rtl8188ee: Add files for new driver - part 7 Larry Finger
2013-02-26  0:13 ` [RFC/RFT 17/27] rtlwifi: rtl8188ee: Add files for new driver - part 8 Larry Finger
2013-02-26  0:13 ` [RFC/RFT 18/27] rtlwifi: rtl8188ee: Add files for new driver - part 9 Larry Finger
2013-02-26  0:13 ` [RFC/RFT 19/27] rtlwifi: rtl8188ee: Add files for new driver - part 10 Larry Finger
     [not found] ` <1361837619-2985-1-git-send-email-Larry.Finger-tQ5ms3gMjBLk1uMJSBkQmQ@public.gmane.org>
2013-02-26  0:13   ` [RFC/RFT 02/27] rtlwifi: Modify files for 2013.02.07 vendor version - part 2 Larry Finger
2013-02-26  0:13   ` [RFC/RFT 07/27] rtlwifi: rtl8723ae: Update to vendor driver of 2013.02.07 Larry Finger
2013-02-26  0:13   ` [RFC/RFT 09/27] rtlwifi: Rework rtl_lps_leave() and rtl_lps_enter() to use work queue Larry Finger
2013-02-26  0:13   ` [RFC/RFT 11/27] rtlwifi: rtl8188ee: Add new driver files - part 2 Larry Finger
2013-02-26  0:13   ` [RFC/RFT 15/27] rtlwifi: rtl8188ee: Add files for new driver - part 6 Larry Finger
2013-02-26  0:13   ` [RFC/RFT 20/27] rtlwifi: rtl8188ee: Add files for new driver - part 11 Larry Finger
2013-02-26  0:13   ` Larry Finger [this message]
2013-02-26  0:13 ` [RFC/RFT 21/27] rtlwifi: rtl8188ee: Add files for new driver - part 12 Larry Finger
2013-02-26  0:13 ` [RFC/RFT 22/27] rtlwifi: rtl8188ee: Add files for new driver - part 13 Larry Finger
2013-02-26  0:13 ` [RFC/RFT 23/27] rtlwifi: rtl8188ee: Add files for new driver - part 14 Larry Finger
2013-02-26  0:13 ` [RFC/RFT 24/27] rtlwifi: rtl8192c: rtl8192ce: rtl8192cu: rtl8192de: rtl8723ae: Add changes required by adding rtl81988ee Larry Finger
2013-02-26  0:13 ` [RFC/RFT 25/27] rtlwifi: rtl8188ee: Enable recognition of RTL8188EE Larry Finger
2013-02-26  0:13 ` [RFC/RFT 26/27] rtlwifi: rtl8188e: Remove some CamelCase variable names Larry Finger
2013-02-26  2:22 ` [RFC/RFT 00/27] Updates for the rtlwifi family of drivers Joe Perches
2013-02-26  3:04   ` Larry Finger
     [not found]     ` <512C264A.3000104-tQ5ms3gMjBLk1uMJSBkQmQ@public.gmane.org>
2013-02-26  3:26       ` Joe Perches
     [not found]     ` <CALx5=V_Y2=bZWXzc9uQkmTBAECeMLbnPU0VA56Wp2tNeBB3Dqw@mail.gmail.com>
2013-03-07 17:01       ` Larry Finger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1361837619-2985-28-git-send-email-Larry.Finger@lwfinger.net \
    --to=larry.finger-tq5ms3gmjblk1umjsbkqmq@public.gmane.org \
    --cc=jcheung-IBi9RG/b67k@public.gmane.org \
    --cc=linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linville-2XuSBdqkA4R54TAoqtyWWQ@public.gmane.org \
    --cc=machen-IBi9RG/b67k@public.gmane.org \
    --cc=mmarek-AlSwsSmVLrQ@public.gmane.org \
    --cc=netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).