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

drivers/wireless/gs2200m: Fix short bit length #6761

Merged
merged 1 commit into from
Aug 2, 2022

Conversation

takayoshi-k
Copy link
Contributor

Summary

Despite being a mask variable for a 32-bit value, it was 16 bits long.

Impact

GS2200M Wi-Fi driver

Testing

Operate telnetd and tcpserver at the same time on spresense by spresense:wifi config.

Despite being a mask variable for a 32-bit value,
it was 16 bits long.
@@ -375,7 +375,7 @@ static bool _enable_cid(uint32_t *cid_bits, char cid, bool on)

static bool _cid_is_set(uint32_t *cid_bits, char cid)
{
uint16_t mask = 1 << _cid_to_uint8(cid);
uint32_t mask = 1 << _cid_to_uint8(cid);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Optional

Suggested change
uint32_t mask = 1 << _cid_to_uint8(cid);
uint32_t mask = UINT32_C(1) << _cid_to_uint8(cid);

@@ -602,7 +602,7 @@ static void _remove_and_free_pkt(FAR struct gs2200m_dev_s *dev, uint8_t c)
static void _remove_all_pkt(FAR struct gs2200m_dev_s *dev, uint8_t c)
{
FAR struct pkt_dat_s *pkt_dat;
uint16_t mask;
uint32_t mask;

mask = 1 << c;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Optional

Suggested change
mask = 1 << c;
mask = UINT32_C(1) << c;

@masayuki2009 masayuki2009 merged commit 17d7f50 into apache:master Aug 2, 2022
@jerpelea jerpelea added this to To-Add in Release Notes - 11.0.0 Aug 30, 2022
@jerpelea jerpelea moved this from To-Add to Added in Release Notes - 11.0.0 Sep 1, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
No open projects
Development

Successfully merging this pull request may close these issues.

None yet

5 participants