summaryrefslogtreecommitdiff
path: root/hw/sd.h
diff options
context:
space:
mode:
authorMitsyanko Igor <i.mitsyanko@samsung.com>2012-08-13 11:04:06 +0100
committerPeter Maydell <peter.maydell@linaro.org>2012-08-13 11:04:06 +0100
commitbebd12717c76b251514098bb9682d0309642e565 (patch)
treec7c421d11ba3a7e5f10f46b0385614510c216cbf /hw/sd.h
parentb7202b8870ebb8e9b0246361c96e129172738f82 (diff)
downloadqemu-bebd12717c76b251514098bb9682d0309642e565.tar.gz
hw/sd.c: convert binary variables to bool
Several members of SDState have type int when they actually are binary variables. Change type of these variables to bool to improve code readability. Change SD API to be in consistency with new variables type. Signed-off-by: Igor Mitsyanko <i.mitsyanko@samsung.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/sd.h')
-rw-r--r--hw/sd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/sd.h b/hw/sd.h
index ac4b7c4dfa..d25342f645 100644
--- a/hw/sd.h
+++ b/hw/sd.h
@@ -67,13 +67,13 @@ typedef struct {
typedef struct SDState SDState;
-SDState *sd_init(BlockDriverState *bs, int is_spi);
+SDState *sd_init(BlockDriverState *bs, bool is_spi);
int sd_do_command(SDState *sd, SDRequest *req,
uint8_t *response);
void sd_write_data(SDState *sd, uint8_t value);
uint8_t sd_read_data(SDState *sd);
void sd_set_cb(SDState *sd, qemu_irq readonly, qemu_irq insert);
int sd_data_ready(SDState *sd);
-void sd_enable(SDState *sd, int enable);
+void sd_enable(SDState *sd, bool enable);
#endif /* __hw_sd_h */