From 212f631eb441b9ae2d154b6503b9083a1fda3e5b Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Thu, 11 Oct 2007 22:00:22 +0200 Subject: let erase and protect functions return int instead of size_t. They only return succes/error but no size. --- include/driver.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/driver.h b/include/driver.h index e1b344cfe3..018bbacee5 100644 --- a/include/driver.h +++ b/include/driver.h @@ -54,7 +54,7 @@ struct driver_d { int (*remove)(struct device_d *); ssize_t (*read) (struct device_d*, void* buf, size_t count, ulong offset, ulong flags); ssize_t (*write) (struct device_d*, const void* buf, size_t count, ulong offset, ulong flags); - ssize_t (*erase) (struct device_d*, size_t count, unsigned long offset); + int (*erase) (struct device_d*, size_t count, unsigned long offset); int (*protect)(struct device_d*, size_t count, unsigned long offset, int prot); int (*memmap)(struct device_d*, void **map, int flags); @@ -109,8 +109,8 @@ struct driver_d *get_driver_by_name(const char *name); ssize_t dev_read(struct device_d *dev, void *buf, size_t count, ulong offset, ulong flags); ssize_t dev_write(struct device_d *dev, const void *buf, size_t count, ulong offset, ulong flags); -ssize_t dev_erase(struct device_d *dev, size_t count, unsigned long offset); -ssize_t dev_protect(struct device_d *dev, size_t count, unsigned long offset, int prot); +int dev_erase(struct device_d *dev, size_t count, unsigned long offset); +int dev_protect(struct device_d *dev, size_t count, unsigned long offset, int prot); int dev_memmap(struct device_d *dev, void **map, int flags); /* These are used by drivers which work with direct memory accesses */ -- cgit v1.2.3