diff --git a/drivers/io/io_storage.c b/drivers/io/io_storage.c index c9ff31bcc44b9afc6b1ef0efe7e2558628b2ec39..e444f87f722b3ae4c36192c4789e65ed852e9f50 100644 --- a/drivers/io/io_storage.c +++ b/drivers/io/io_storage.c @@ -189,9 +189,6 @@ int io_dev_init(uintptr_t dev_handle, const uintptr_t init_params) return result; } - -/* TODO: Consider whether an explicit "shutdown" API should be included */ - /* Close a connection to a device */ int io_dev_close(uintptr_t dev_handle) { diff --git a/include/drivers/io/io_storage.h b/include/drivers/io/io_storage.h index ec6db3f2ade7d9be8878a6934bd0f23c864d6d0c..084c67c470ffc83ffe840d76df4a324e92fece34 100644 --- a/include/drivers/io/io_storage.h +++ b/include/drivers/io/io_storage.h @@ -79,8 +79,6 @@ int io_dev_open(const struct io_dev_connector *dev_con, * re-initialisation */ int io_dev_init(uintptr_t dev_handle, const uintptr_t init_params); -/* TODO: Consider whether an explicit "shutdown" API should be included */ - /* Close a connection to a device */ int io_dev_close(uintptr_t dev_handle);