diff options
Diffstat (limited to 'sys/dev/mmc/mmcsd.c')
-rw-r--r-- | sys/dev/mmc/mmcsd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/mmc/mmcsd.c b/sys/dev/mmc/mmcsd.c index 0c7eeca..5e60869 100644 --- a/sys/dev/mmc/mmcsd.c +++ b/sys/dev/mmc/mmcsd.c @@ -162,19 +162,19 @@ mmcsd_detach(device_t dev) MMCSD_LOCK_DESTROY(sc); - return 0; + return (0); } static int mmcsd_open(struct disk *dp) { - return 0; + return (0); } static int mmcsd_close(struct disk *dp) { - return 0; + return (0); } static void |