From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-171.mta0.migadu.com (out-171.mta0.migadu.com [91.218.175.171]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 030F31FB1 for ; Sun, 21 Jun 2026 07:49:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.171 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782028181; cv=none; b=R4Tcu519kIGM/JTRJ4ezf9tSON6NU7vUXdM9gZOwd0TmAylnhd64wz6Lvrxfj3he2fT1S1QsAJfBCCyGt4lbXm6E6gzLcf0eKc1omrstanh9ZDT7kz5km1iJXxoe41q1gV5DVoKpIBqJhU6prlUvsj/+G23PfQFxH23RGko14Tg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782028181; c=relaxed/simple; bh=yaKOVhDl+hefZC+MREEQDYsz4QLpPEeAxiuXX/EsoiU=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=c/31ALQ76JY05YyH4y3Dl1ld9qGJxCZJKdqGhPLWL5WV/ybHnfn9mH3O7JuujMYixLH3Q0fVWK1JJAPaySSmSOMEs6ePRXmsnFDQTEfX+g0dR8Ylm617MqDQQTPZYCllC0SL4MglEbc+RdalHVEV/MuIUkIU8+15modiKIXtoU8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=ukARg00j; arc=none smtp.client-ip=91.218.175.171 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="ukARg00j" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1782028178; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=BNaS9jIlaPyzUO7T2xtUFI3n381fKC7XT+mJHiOmeek=; b=ukARg00jemZWYkSnTeyhtBEOI6KQhr4+RuGXtC4lcXFjoRkSB+AYnydcXe+8nFrXwJyloC X/0Aw3uEu0enGcfRQTNQhS6Wd6rQ6UaWeprk+dRfr0LUno/zEGaqM4AUvpjl6vyoX9Z4iN o4x1CBh+ceCdzgtsJF32aJvqjBQPneQ= From: Zenghui Yu To: linux-kernel@vger.kernel.org Cc: dpenkler@gmail.com, gregkh@linuxfoundation.org, rdunlap@infradead.org, Zenghui Yu Subject: [PATCH] gpib: lpvo_usb: fix path of the "debug" module parameter in comment Date: Sun, 21 Jun 2026 15:49:26 +0800 Message-ID: <20260621074926.11252-1-zenghui.yu@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT The correct path of the "debug" module parameter should be /sys/module/lpvo_usb_gpib/parameters/debug. Fix it. Signed-off-by: Zenghui Yu --- drivers/gpib/lpvo_usb_gpib/lpvo_usb_gpib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpib/lpvo_usb_gpib/lpvo_usb_gpib.c b/drivers/gpib/lpvo_usb_gpib/lpvo_usb_gpib.c index e6ea9422d6f2..13a067010db7 100644 --- a/drivers/gpib/lpvo_usb_gpib/lpvo_usb_gpib.c +++ b/drivers/gpib/lpvo_usb_gpib/lpvo_usb_gpib.c @@ -68,7 +68,7 @@ MODULE_DEVICE_TABLE(usb, lpvo_table); * (about twice the log volume of [1]) * To switch debug level: * At module loading: modprobe lpvo_usb_gpib debug={0,1,2} - * On the fly: echo {0,1,2} > /sys/modules/lpvo_usb_gpib/parameters/debug + * On the fly: echo {0,1,2} > /sys/module/lpvo_usb_gpib/parameters/debug */ static int debug; -- 2.53.0