summaryrefslogtreecommitdiffstats
path: root/src/core/blockdev.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/blockdev.c')
-rw-r--r--src/core/blockdev.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/core/blockdev.c b/src/core/blockdev.c
index c219d9673..ff0f3b68b 100644
--- a/src/core/blockdev.c
+++ b/src/core/blockdev.c
@@ -22,6 +22,7 @@
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
+FILE_SECBOOT ( PERMITTED );
#include <errno.h>
#include <ipxe/interface.h>
@@ -45,8 +46,8 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
* @ret rc Return status code
*/
int block_read ( struct interface *control, struct interface *data,
- uint64_t lba, unsigned int count,
- userptr_t buffer, size_t len ) {
+ uint64_t lba, unsigned int count, void *buffer,
+ size_t len ) {
struct interface *dest;
block_read_TYPE ( void * ) *op =
intf_get_dest_op ( control, block_read, &dest );
@@ -76,8 +77,8 @@ int block_read ( struct interface *control, struct interface *data,
* @ret rc Return status code
*/
int block_write ( struct interface *control, struct interface *data,
- uint64_t lba, unsigned int count,
- userptr_t buffer, size_t len ) {
+ uint64_t lba, unsigned int count, void *buffer,
+ size_t len ) {
struct interface *dest;
block_write_TYPE ( void * ) *op =
intf_get_dest_op ( control, block_write, &dest );