lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 28 Jul 2016 18:55:26 +0900
From:	Jaehoon Chung <jh80.chung@...sung.com>
To:	linux-mmc@...r.kernel.org
Cc:	ulf.hansson@...aro.org, shawn.lin@...k-chips.com,
	linux-kernel@...r.kernel.org, robh+dt@...nel.or,
	mark.rutland@....com, devicetree@...r.kernel.org,
	Jaehoon Chung <jh80.chung@...sung.com>
Subject: [PATCH 1/2] ARM: dts: zx: remove the slot sub-nodes relevant to dwmmc
 controller

Dwmmc controller didn't support the slot sub-nodes.
(dwmmc controller decided not to consider the slot nodes.)
And "supports-highspeed" property was deprecated.
Instead, use "cap-sd/mmc-highspeed" properties.

Signed-off-by: Jaehoon Chung <jh80.chung@...sung.com>
---
 arch/arm/boot/dts/zx296702-ad1.dts | 18 ++++++------------
 1 file changed, 6 insertions(+), 12 deletions(-)

diff --git a/arch/arm/boot/dts/zx296702-ad1.dts b/arch/arm/boot/dts/zx296702-ad1.dts
index 081f980..23b1c79 100644
--- a/arch/arm/boot/dts/zx296702-ad1.dts
+++ b/arch/arm/boot/dts/zx296702-ad1.dts
@@ -19,28 +19,22 @@
 
 &mmc0 {
 	num-slots = <1>;
-	supports-highspeed;
+	cap-mmc-highspeed;
+	cap-sd-highspeed;
 	non-removable;
 	disable-wp;
+	bus-width = <4>;
 	status = "okay";
-
-	slot@0 {
-		reg = <0>;
-		bus-width = <4>;
-	};
 };
 
 &mmc1 {
 	num-slots = <1>;
-	supports-highspeed;
+	cap-mmc-highspeed;
+	cap-sd-highspeed;
 	non-removable;
 	disable-wp;
+	bus-width = <8>;
 	status = "okay";
-
-	slot@0 {
-		reg = <0>;
-		bus-width = <8>;
-	};
 };
 
 &uart0 {
-- 
1.9.1

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ