Revision 73124ced9cd7d0bceab50888a3d3d3a3c8796b4c authored by Punit Agrawal on 18 November 2015, 13:52:44 UTC, committed by Rafael J. Wysocki on 23 November 2015, 22:50:27 UTC
The SCPI clk driver registers the virtual cpufreq device that kicks off
initialisation of the SCPI cpufreq driver. Also, clk_get() will fail for
the cpufreq driver if the SCPI clk driver is missing.

Fix this by making the SCPI cpufreq driver explicitly depend on the SCPI
clk driver.

Fixes: 8def31034d03 (cpufreq: arm_big_little: add SCPI interface driver)
Signed-off-by: Punit Agrawal <punit.agrawal@arm.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent b0ceed0
Raw File
Kconfig
menuconfig 6LOWPAN
	tristate "6LoWPAN Support"
	depends on IPV6
	---help---
	  This enables IPv6 over Low power Wireless Personal Area Network -
	  "6LoWPAN" which is supported by IEEE 802.15.4 or Bluetooth stacks.

menuconfig 6LOWPAN_NHC
	tristate "Next Header Compression Support"
	depends on 6LOWPAN
	default y
	---help---
	  Support for next header compression.

if 6LOWPAN_NHC

config 6LOWPAN_NHC_DEST
	tristate "Destination Options Header Support"
	default y
	---help---
	  6LoWPAN IPv6 Destination Options Header compression according to
	  RFC6282.

config 6LOWPAN_NHC_FRAGMENT
	tristate "Fragment Header Support"
	default y
	---help---
	  6LoWPAN IPv6 Fragment Header compression according to RFC6282.

config 6LOWPAN_NHC_HOP
	tristate "Hop-by-Hop Options Header Support"
	default y
	---help---
	  6LoWPAN IPv6 Hop-by-Hop Options Header compression according to
	  RFC6282.

config 6LOWPAN_NHC_IPV6
	tristate "IPv6 Header Support"
	default y
	---help---
	  6LoWPAN IPv6 Header compression according to RFC6282.

config 6LOWPAN_NHC_MOBILITY
	tristate "Mobility Header Support"
	default y
	---help---
	  6LoWPAN IPv6 Mobility Header compression according to RFC6282.

config 6LOWPAN_NHC_ROUTING
	tristate "Routing Header Support"
	default y
	---help---
	  6LoWPAN IPv6 Routing Header compression according to RFC6282.

config 6LOWPAN_NHC_UDP
	tristate "UDP Header Support"
	default y
	---help---
	  6LoWPAN IPv6 UDP Header compression according to RFC6282.

endif
back to top