From 80020d7888349168627de066b174450712930ee4 Mon Sep 17 00:00:00 2001 From: Emmanuel Vadot Date: Fri, 23 Apr 2021 14:51:13 +0200 Subject: [PATCH] mmccam: probe*: Style(9) --- sys/cam/mmc/mmc_xpt.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/sys/cam/mmc/mmc_xpt.c b/sys/cam/mmc/mmc_xpt.c index ca5d299d22a..847fd7cdb41 100644 --- a/sys/cam/mmc/mmc_xpt.c +++ b/sys/cam/mmc/mmc_xpt.c @@ -90,14 +90,14 @@ static void mmc_proto_debug_out(union ccb *ccb); typedef enum { PROBE_RESET, PROBE_IDENTIFY, - PROBE_SDIO_RESET, + PROBE_SDIO_RESET, PROBE_SEND_IF_COND, - PROBE_SDIO_INIT, - PROBE_MMC_INIT, + PROBE_SDIO_INIT, + PROBE_MMC_INIT, PROBE_SEND_APP_OP_COND, - PROBE_GET_CID, - PROBE_GET_CSD, - PROBE_SEND_RELATIVE_ADDR, + PROBE_GET_CID, + PROBE_GET_CSD, + PROBE_SEND_RELATIVE_ADDR, PROBE_MMC_SET_RELATIVE_ADDR, PROBE_SELECT_CARD, PROBE_DONE, @@ -107,16 +107,16 @@ typedef enum { static char *probe_action_text[] = { "PROBE_RESET", "PROBE_IDENTIFY", - "PROBE_SDIO_RESET", + "PROBE_SDIO_RESET", "PROBE_SEND_IF_COND", - "PROBE_SDIO_INIT", - "PROBE_MMC_INIT", + "PROBE_SDIO_INIT", + "PROBE_MMC_INIT", "PROBE_SEND_APP_OP_COND", - "PROBE_GET_CID", - "PROBE_GET_CSD", - "PROBE_SEND_RELATIVE_ADDR", + "PROBE_GET_CID", + "PROBE_GET_CSD", + "PROBE_SEND_RELATIVE_ADDR", "PROBE_MMC_SET_RELATIVE_ADDR", - "PROBE_SELECT_CARD", + "PROBE_SELECT_CARD", "PROBE_DONE", "PROBE_INVALID" };