We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your enhancement proposal related to a problem? Please describe. module is using flash driver implementation API call page_layout(fdev, &layout, &layout_size); https://github.com/zephyrproject-rtos/zephyr/blob/master/subsys/storage/stream/stream_flash.c#L203
page_layout(fdev, &layout, &layout_size);
It should use public flash driver API instead, especially void flash_page_foreach(structdevice *dev, flash_page_cbcb, void *data) in this case.
void flash_page_foreach(structdevice *dev, flash_page_cbcb, void *data)
The text was updated successfully, but these errors were encountered:
hakonfam
nvlsianpu
Successfully merging a pull request may close this issue.
Is your enhancement proposal related to a problem? Please describe.
module is using flash driver implementation API call
page_layout(fdev, &layout, &layout_size);
https://github.com/zephyrproject-rtos/zephyr/blob/master/subsys/storage/stream/stream_flash.c#L203
It should use public flash driver API instead, especially
void flash_page_foreach(structdevice *dev, flash_page_cbcb, void *data)
in this case.The text was updated successfully, but these errors were encountered: