mirror of
https://github.com/trussed-dev/littlefs2.git
synced 2026-03-11 16:30:52 -07:00
The const_ram_storage! and ram_storage! macros used to have trait and result arguments to set the storage trait to implement and the result type to use. As this defaulted to relative paths, it made the result of the macro dependent on the context and could cause confusion. At the same time, there is no real use case for substituting these types. This patch removes the arguments for good and just uses $crate::driver::Storage and $crate::io::Result instead.