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

bluetooth: host: att: Remove superfluous functions and misleading checks #88043

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

PavelVPV
Copy link
Collaborator

@PavelVPV PavelVPV commented Apr 2, 2025

This PR removes chan_req_send and att_sent as superfluous functions. They do nothing, but increase readability complexity. It also removes >= 0 check for bt_att_chan_req_send as currently only 0 is returned on success.

PavelVPV added 2 commits April 2, 2025 13:25
The extra `bt_att_chan_req_send` does nothing but increases readability
complexity. All checks are already performed by the caller.

Signed-off-by: Pavel Vasilyev <pavel.vasilyev@nordicsemi.no>
`att_sent` is removed as it does not provide any value. All checks are
already performed in `att_on_sent_cb`, and keeping it only increases
readability complexity.

`att_sent` is removed as doesn't give any value. All checks are done
already in `att_on_sent_cb`. It just increases readness complexity.

Signed-off-by: Pavel Vasilyev <pavel.vasilyev@nordicsemi.no>
@PavelVPV PavelVPV force-pushed the clean_up_att branch 3 times, most recently from 6a42fbc to cfa5746 Compare April 2, 2025 12:29
@PavelVPV PavelVPV changed the title bluetooth: host: att: Remove superfluous functions bluetooth: host: att: Remove superfluous functions and misleading checks Apr 2, 2025
@PavelVPV PavelVPV marked this pull request as ready for review April 3, 2025 07:33
@github-actions github-actions bot added area: Bluetooth area: Bluetooth Host Bluetooth Host (excluding BR/EDR) labels Apr 3, 2025
jhedberg
jhedberg previously approved these changes Apr 3, 2025
`>= 0` was used when EATT support was implemented (zephyrproject-rtos#23199) because
`bt_l2cap_chan_send` could return number of bytes sent. After PR zephyrproject-rtos#67528,
`bt_l2cap_chan_send` doesn't return amount of bytes sent or any positive
value, but either 0 or negative value. Thus `>= 0` is not needed. It
also confusing when reading code, especially when the same check is not
implemented in other cases where underlying function `chan_send` is
used.

Signed-off-by: Pavel Vasilyev <pavel.vasilyev@nordicsemi.no>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: Bluetooth Host Bluetooth Host (excluding BR/EDR) area: Bluetooth
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants