Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Kconfig style #15671

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion boards/arm/imx9/imx95-evk/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#

choice IMX95_CODE_LOCATION
prompt "Code location"
prompt "Code location"

config IMX95_RUN_FROM_ITCM
bool "Run from Instruction Tightly Coupled Memory (ITCM)"
Expand Down
20 changes: 10 additions & 10 deletions drivers/sensors/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -969,16 +969,16 @@ config SENSORS_MCP9600_POLL
bool "MCP9600 polling"
default y
depends on SENSORS_MCP9600
---help---
Enable the worker thread for polling the MCP9600 and collecting
measurements
---help---
Enable the worker thread for polling the MCP9600 and collecting
measurements

config MCP9600_THREAD_STACKSIZE
int "MCP9600 stack size"
default 1024
int "MCP9600 stack size"
default 1024
depends on SENSORS_MCP9600
---help---
Stack size of the worker thread polling the MCP9600 for measurements
---help---
Stack size of the worker thread polling the MCP9600 for measurements

endif # SENSORS_MCP9600

Expand Down Expand Up @@ -1643,7 +1643,7 @@ config SHT4X_I2C_FREQUENCY
range 1 400000

config SHT4X_THREAD_STACKSIZE
int "SHT4X worker thread stack size"
int "SHT4X worker thread stack size"
default 1024
---help---
The stack size for the worker thread that performs measurements
Expand Down Expand Up @@ -1671,8 +1671,8 @@ config SENSORS_SHT4X_POLL
bool "Use polling"
default y
---help---
Configures the SHT4X to be polled at an interval instead of allowing user code to choose when measurements are
taken.
Configures the SHT4X to be polled at an interval instead of allowing user code to choose when measurements are
taken.

endif # SENSORS_SHT4X

Expand Down
4 changes: 2 additions & 2 deletions mm/kasan/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ config MM_KASAN
add -fsanitize=kernel-address to CFLAGS/CXXFLAGS too.

config MM_KASAN_INSTRUMENT
bool
bool

if MM_KASAN

Expand All @@ -39,7 +39,7 @@ config MM_KASAN_SW_TAGS
---help---
KAsan based on software tags

endchoice
endchoice # KAsan Mode

config MM_KASAN_INSTRUMENT_ALL
bool "Enable KASan for the entire image"
Expand Down
Loading