* [GIT PULL][PATCH] ibm-acpi: patch queue for acpi-test
@ 2006-12-18 17:52 Henrique de Moraes Holschuh
[not found] ` <20061218175207.8826.25057.stgit-H32KNTuDSMjdPi8JTuvWk31TOOPCyuNQ5NbjCUgZEJk@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Henrique de Moraes Holschuh @ 2006-12-18 17:52 UTC (permalink / raw)
To: Len Brown
Cc: linux-acpi-u79uwXL29TY76Z2rM5mHXA,
ibm-acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Please pull from the ibm-acpi-devel git tree at:
git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
branch for-upstream/acpi-test, to receve this patch series.
This series contains just one patch that was dropped from acpi-test
for some unknown reason. It is the same patch I submitted for 2.6.20
and 2.6.19 in a separate message.
ACPI: ibm_acpi: allow clean removal
--
"One disk to rule them all, One disk to find them. One disk to bring
them all and in the darkness grind them. In the Land of Redmond
where the shadows lie." -- The Silicon Valley Tarot
Henrique Holschuh
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] ACPI: ibm_acpi: allow clean removal
[not found] ` <20061218175207.8826.25057.stgit-H32KNTuDSMjdPi8JTuvWk31TOOPCyuNQ5NbjCUgZEJk@public.gmane.org>
@ 2006-12-18 17:53 ` Henrique de Moraes Holschuh
2006-12-20 4:13 ` Len Brown
0 siblings, 1 reply; 3+ messages in thread
From: Henrique de Moraes Holschuh @ 2006-12-18 17:53 UTC (permalink / raw)
To: Len Brown
Cc: linux-acpi-u79uwXL29TY76Z2rM5mHXA,
ibm-acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
From: Alexey Starikovskiy <alexey_y_starikovskiy-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
Allow clean removal by setting notify_installed in the right place.
Alexey Starikovskiy <alexey.y.starikovskiy-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Signed-off-by: Henrique de Moraes Holschuh <hmh-N3TV7GIv+o9fyO9Q7EP/yw@public.gmane.org>
Signed-off-by: Len Brown <len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
---
drivers/acpi/ibm_acpi.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/drivers/acpi/ibm_acpi.c b/drivers/acpi/ibm_acpi.c
index 003a987..719a320 100644
--- a/drivers/acpi/ibm_acpi.c
+++ b/drivers/acpi/ibm_acpi.c
@@ -1805,7 +1805,7 @@ static int __init setup_notify(struct ibm_struct *ibm)
ibm->name, status);
return -ENODEV;
}
-
+ ibm->notify_installed = 1;
return 0;
}
@@ -1882,7 +1882,6 @@ static int __init ibm_init(struct ibm_struct *ibm)
ret = setup_notify(ibm);
if (ret < 0)
return ret;
- ibm->notify_installed = 1;
}
return 0;
--
"One disk to rule them all, One disk to find them. One disk to bring
them all and in the darkness grind them. In the Land of Redmond
where the shadows lie." -- The Silicon Valley Tarot
Henrique Holschuh
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ACPI: ibm_acpi: allow clean removal
2006-12-18 17:53 ` [PATCH] ACPI: ibm_acpi: allow clean removal Henrique de Moraes Holschuh
@ 2006-12-20 4:13 ` Len Brown
0 siblings, 0 replies; 3+ messages in thread
From: Len Brown @ 2006-12-20 4:13 UTC (permalink / raw)
To: Henrique de Moraes Holschuh; +Cc: linux-acpi, ibm-acpi-devel
Applied.
thanks,
-Len
On Monday 18 December 2006 12:53, Henrique de Moraes Holschuh wrote:
> From: Alexey Starikovskiy <alexey_y_starikovskiy@linux.intel.com>
>
> Allow clean removal by setting notify_installed in the right place.
>
> Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>
> Signed-off-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
> Signed-off-by: Len Brown <len.brown@intel.com>
> ---
>
> drivers/acpi/ibm_acpi.c | 3 +--
> 1 files changed, 1 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/acpi/ibm_acpi.c b/drivers/acpi/ibm_acpi.c
> index 003a987..719a320 100644
> --- a/drivers/acpi/ibm_acpi.c
> +++ b/drivers/acpi/ibm_acpi.c
> @@ -1805,7 +1805,7 @@ static int __init setup_notify(struct ibm_struct *ibm)
> ibm->name, status);
> return -ENODEV;
> }
> -
> + ibm->notify_installed = 1;
> return 0;
> }
>
> @@ -1882,7 +1882,6 @@ static int __init ibm_init(struct ibm_struct *ibm)
> ret = setup_notify(ibm);
> if (ret < 0)
> return ret;
> - ibm->notify_installed = 1;
> }
>
> return 0;
>
>
> --
> "One disk to rule them all, One disk to find them. One disk to bring
> them all and in the darkness grind them. In the Land of Redmond
> where the shadows lie." -- The Silicon Valley Tarot
> Henrique Holschuh
> -
> To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2006-12-20 4:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-18 17:52 [GIT PULL][PATCH] ibm-acpi: patch queue for acpi-test Henrique de Moraes Holschuh
[not found] ` <20061218175207.8826.25057.stgit-H32KNTuDSMjdPi8JTuvWk31TOOPCyuNQ5NbjCUgZEJk@public.gmane.org>
2006-12-18 17:53 ` [PATCH] ACPI: ibm_acpi: allow clean removal Henrique de Moraes Holschuh
2006-12-20 4:13 ` Len Brown
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.