From: Laurent Pinchart Date: Thu, 18 Oct 2012 07:29:44 +0000 (+0200) Subject: drivers: cma: Fix wrong CMA selected region size default value X-Git-Tag: v5.15~21347^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5e97f3f918c27c68c092bdca7917266615aec62f;p=platform%2Fkernel%2Flinux-starfive.git drivers: cma: Fix wrong CMA selected region size default value Kconfig lists CMA_SIZE_SEL_ABSOLUTE as the default value fo the CMA selected region size, but that option isn't available in the defined choices. Set the default to CMA_SIZE_SEL_MBYTES instead. Signed-off-by: Laurent Pinchart Signed-off-by: Marek Szyprowski --- diff --git a/drivers/base/Kconfig b/drivers/base/Kconfig index 08b4c52..b34b5cd 100644 --- a/drivers/base/Kconfig +++ b/drivers/base/Kconfig @@ -236,7 +236,7 @@ config CMA_SIZE_PERCENTAGE choice prompt "Selected region size" - default CMA_SIZE_SEL_ABSOLUTE + default CMA_SIZE_SEL_MBYTES config CMA_SIZE_SEL_MBYTES bool "Use mega bytes value only"