From owner-acpi-jp@jp.FreeBSD.org Fri Sep 19 02:26:20 2003
Received: (from daemon@localhost)
	by castle.jp.FreeBSD.org (8.11.6p2+3.4W/8.11.3) id h8IHQKh94037;
	Fri, 19 Sep 2003 02:26:20 +0900 (JST)
	(envelope-from owner-acpi-jp@jp.FreeBSD.org)
Received: from sana.init-main.com (104.194.138.210.bn.2iij.net [210.138.194.104])
	by castle.jp.FreeBSD.org (8.11.6p2+3.4W/8.11.3) with ESMTP/inet id h8IHQJJ94031
	for <acpi-jp@jp.FreeBSD.org>; Fri, 19 Sep 2003 02:26:19 +0900 (JST)
	(envelope-from takawata@init-main.com)
Received: from init-main.com (localhost [127.0.0.1])
	by sana.init-main.com (8.12.9/8.12.9) with ESMTP id h8IHKaAE002213
	for <acpi-jp@jp.FreeBSD.org>; Fri, 19 Sep 2003 02:20:46 +0900 (JST)
	(envelope-from takawata@init-main.com)
Message-Id: <200309181720.h8IHKaAE002213@sana.init-main.com>
To: acpi-jp@jp.FreeBSD.org
In-reply-to: Your message of "Fri, 19 Sep 2003 01:31:21 JST."
             <20030919.013121.43004805.iwasaki@jp.FreeBSD.org>
From: Takanori Watanabe <takawata@init-main.com>
Reply-To: acpi-jp@jp.FreeBSD.org
Precedence: list
Date: Fri, 19 Sep 2003 02:20:36 +0900
X-Sequence: acpi-jp 2679
Subject: [acpi-jp 2679] Re: TOSHIBA HCI driver on ACPI.
Sender: owner-acpi-jp@jp.FreeBSD.org
X-Originator: takawata@init-main.com
X-Distribute: distribute version 2.1 (Alpha) patchlevel 24e+030902

In message <20030919.013121.43004805.iwasaki@jp.FreeBSD.org>, Mitsuru IWASAKI 
$B$5$s$$$o$/(B:
>X+static int
>X+acpi_toshiba_modevent(struct module *mod, int event, void *junk)
>X+{   
>X+    switch(event) {
>X+    case MOD_LOAD:
>X+        if (!cold) {
>X+            printf("The ACPI Toshiba driver cannot be loaded after boot.\n")
>;
>X+            return (EPERM);
>X+        }
>X+        break;
>X+    case MOD_UNLOAD:
>X+        return (EBUSY);
>X+        break;
>X+    default:
>X+        break;
>X+    }
>X+    return (0);
>X+}
>X+

I don't think this is needed.
This driver can be freely loaded or unloaded because
this module only activated if acpi module is activated.

