diff options
| author | Simon Glass <[email protected]> | 2015-10-03 11:21:16 -0600 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2015-10-05 15:47:49 +0100 |
| commit | 7bb91dd109e2aff5f7f51aed44ac7890f9a4d158 (patch) | |
| tree | 3bb4b5d521198729104557dabbcf854743bd8889 /arch | |
| parent | cbfc2ff9da392d61cd456703ea6256996eb8beb1 (diff) | |
sandbox: Correct operaion of 'reset' command
Currently 'reset' only works with the test device tree. When run without a
device tree, or with the normal device tree, the following error is
displayed:
Reset not supported on this platform
Fix the driver and the standard device tree to avoid this.
Signed-off-by: Simon Glass <[email protected]>
Reported-by: Stephen Warren <[email protected]>
Tested-by: Stephen Warren <[email protected]>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/sandbox/dts/sandbox.dts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/sandbox/dts/sandbox.dts b/arch/sandbox/dts/sandbox.dts index 65b9125f5fc..08f72aceda5 100644 --- a/arch/sandbox/dts/sandbox.dts +++ b/arch/sandbox/dts/sandbox.dts @@ -153,6 +153,10 @@ }; }; + reset@1 { + compatible = "sandbox,reset"; + }; + spi@0 { #address-cells = <1>; #size-cells = <0>; |
