From b721891fa11f13938ab2a7c137713eacd72176a6 Mon Sep 17 00:00:00 2001 From: Garrett D'Amore Date: Sat, 6 Dec 2008 08:23:16 -0800 Subject: [PATCH] 6760177 sdhost has no quiesce() (fix lint) --- usr/src/uts/common/io/sdcard/impl/sda_mem.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usr/src/uts/common/io/sdcard/impl/sda_mem.c b/usr/src/uts/common/io/sdcard/impl/sda_mem.c index f470e38687..26069d4338 100644 --- a/usr/src/uts/common/io/sdcard/impl/sda_mem.c +++ b/usr/src/uts/common/io/sdcard/impl/sda_mem.c @@ -29,6 +29,7 @@ #include #include +#include #include #include #include @@ -462,6 +463,7 @@ sda_mem_detach(dev_info_t *dip, ddi_detach_cmd_t cmd) int sda_mem_quiesce(dev_info_t *dip) { + _NOTE(ARGUNUSED(dip)); /* no work to do */ return (DDI_SUCCESS); } -- 2.11.4.GIT