You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by je...@apache.org on 2023/01/31 12:56:24 UTC

[nuttx] branch master updated: drivers/mmcsd: Fix kconfig error regarding MMCSD_IOCSUPPORT

This is an automated email from the ASF dual-hosted git repository.

jerpelea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new da83836da7 drivers/mmcsd: Fix kconfig error regarding MMCSD_IOCSUPPORT
da83836da7 is described below

commit da83836da79162e2a7c2426ea9a2ddfcd8fdeb92
Author: Ville Juven <vi...@unikie.com>
AuthorDate: Tue Jan 31 12:54:55 2023 +0200

    drivers/mmcsd: Fix kconfig error regarding MMCSD_IOCSUPPORT
    
    Something I noticed in CI:
    drivers/mmcsd/Kconfig:32:warning: 'MMCSD_IOCSUPPORT': number is invalid
---
 drivers/mmcsd/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmcsd/Kconfig b/drivers/mmcsd/Kconfig
index 6511a0c40b..4f8e2ff9c5 100644
--- a/drivers/mmcsd/Kconfig
+++ b/drivers/mmcsd/Kconfig
@@ -28,7 +28,7 @@ menuconfig MMCSD
 if MMCSD
 
 config MMCSD_IOCSUPPORT
-	int "Enable MMC/SD ioctl support"
+	bool "Enable MMC/SD ioctl support"
 	default y
 	---help---
 		Disable it to save some code size if required.