summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2009-01-09 10:58:39 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2009-01-09 10:58:39 +0000
commit916f14807ee03722dbf029ad65e9e620829a5166 (patch)
tree19f0986f5ffda29118d1f8abcf598b6ae3f2d244
parent3ccd7f6b73bfcccf9df669950532f368f1a54e25 (diff)
Explain that any check pattern will work.
Suggested by miod@
-rw-r--r--sys/dev/sdmmc/sdmmc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sdmmc/sdmmc.c b/sys/dev/sdmmc/sdmmc.c
index 891f227090e..5398b51fab9 100644
--- a/sys/dev/sdmmc/sdmmc.c
+++ b/sys/dev/sdmmc/sdmmc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sdmmc.c,v 1.17 2009/01/09 10:55:22 jsg Exp $ */
+/* $OpenBSD: sdmmc.c,v 1.18 2009/01/09 10:58:38 jsg Exp $ */
/*
* Copyright (c) 2006 Uwe Stuehler <uwe@openbsd.org>
@@ -575,7 +575,7 @@ int
sdmmc_send_if_cond(struct sdmmc_softc *sc, uint32_t card_ocr)
{
struct sdmmc_command cmd;
- uint8_t pat = 0x23;
+ uint8_t pat = 0x23; /* any pattern will do here */
uint8_t res;
bzero(&cmd, sizeof cmd);