1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/driver_atwinc15x0/patches/0005-remove-dependency-from-spi_flash-module.patch
2020-06-26 12:36:56 +02:00

26 lines
753 B
Diff

From 0e118023ed9a1426e5299b9e6802e11bd488de8b Mon Sep 17 00:00:00 2001
From: Gunar Schorcht <gunar@schorcht.net>
Date: Mon, 30 Mar 2020 02:22:18 +0200
Subject: [PATCH 5/6] remove dependency from spi_flash module
---
src/driver/source/nmdrv.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/driver/source/nmdrv.c b/src/driver/source/nmdrv.c
index 396ade9..3de10c3 100644
--- a/src/driver/source/nmdrv.c
+++ b/src/driver/source/nmdrv.c
@@ -385,7 +385,7 @@ sint8 nm_drv_deinit(void * arg)
}
/* Disable SPI flash to save power when the chip is off */
- ret = spi_flash_enable(0);
+ /* ret = spi_flash_enable(0); */
if (M2M_SUCCESS != ret) {
M2M_ERR("[nmi stop]: SPI flash disable fail\n");
goto ERR1;
--
2.17.1