commit | 5af4e9df2fa265ae09075f968d1fd06e23f772cd | [log] [tgz] |
---|---|---|
author | Pisit Sawangvonganan <pisit@ndrsolution.com> | Wed Jul 31 14:45:44 2024 +0700 |
committer | Chris Friedt <chrisfriedt@gmail.com> | Thu Aug 08 20:21:13 2024 -0400 |
tree | 63cb18fcfc017ed3f151883d525a2d937202b72e | |
parent | e87d508ae556c3ec21eee4921341a05480e9d6e5 [diff] |
net: wifi: shell: apply `struct option` as `static const` This change marks the remaining instance of the `struct option` as `static const`. The rationale is that `struct option` is a read-only variable. By using `static const`, we ensure immutability, leading to usage of only the `.rodata` section and a reduction in the `.data` area. Signed-off-by: Pisit Sawangvonganan <pisit@ndrsolution.com>