Makefile and Kconfig plumbing to build the UMTS RRC emulation qdisc.

Signed-off-by: Andres Lagar-Cavilla <andres@lagarcavilla.org>

diff -r 5fc5a35c4ec0 net/sched/Kconfig
--- a/net/sched/Kconfig
+++ b/net/sched/Kconfig
@@ -242,6 +242,18 @@ config NET_SCH_NETEM
 
 	  If unsure, say N.
 
+config NET_SCH_RRC
+	tristate "UMTS RRC state machine emulator (RRC)"
+	---help---
+	  Say Y if you want to emulate a UMTS Radio Resource Control
+	  State Machine, delaying packets on changes of state, and accounting
+	  the time spent and bytes sent/received on each state.
+
+	  To compile this driver as a module, choose M here: the module
+	  will be called sch_netem.
+
+	  If unsure, say N.
+
 config NET_SCH_INGRESS
 	tristate "Ingress Qdisc"
 	---help---
diff -r 5fc5a35c4ec0 net/sched/Makefile
--- a/net/sched/Makefile
+++ b/net/sched/Makefile
@@ -28,6 +28,7 @@ obj-$(CONFIG_NET_SCH_TEQL)	+= sch_teql.o
 obj-$(CONFIG_NET_SCH_PRIO)	+= sch_prio.o
 obj-$(CONFIG_NET_SCH_ATM)	+= sch_atm.o
 obj-$(CONFIG_NET_SCH_NETEM)	+= sch_netem.o
+obj-$(CONFIG_NET_SCH_RRC)	+= sch_rrc.o
 obj-$(CONFIG_NET_CLS_U32)	+= cls_u32.o
 obj-$(CONFIG_NET_CLS_ROUTE4)	+= cls_route.o
 obj-$(CONFIG_NET_CLS_FW)	+= cls_fw.o
