Message ID | 200901092017.n09KHA3E014942@imap1.linux-foundation.org (mailing list archive) |
---|---|
State | Superseded, archived |
Headers | show |
the original version of this patch is already in my tree queued for linus. thanks, Len Brown, Intel Open Source Technology Center On Fri, 9 Jan 2009, akpm@linux-foundation.org wrote: > From: Ondrej Zajicek <santiago@crfreenet.org> > > eeepc-laptop driver has interface for enabling/disabling Bluetooth, but it > does not work. This patch fixes it. > > Signed-off-by: Ondrej Zajicek <santiago@crfreenet.org> > Cc: Matthew Garrett <mjg59@srcf.ucam.org> > Cc: Corentin Chary <corentincj@iksaif.net> > Cc: Len Brown <lenb@kernel.org> > Signed-off-by: Andrew Morton <akpm@linux-foundation.org> > --- > > drivers/platform/x86/eeepc-laptop.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff -puN drivers/platform/x86/eeepc-laptop.c~eeepc-laptop-enable-bluetooth-for-asus-eee-901 drivers/platform/x86/eeepc-laptop.c > --- a/drivers/platform/x86/eeepc-laptop.c~eeepc-laptop-enable-bluetooth-for-asus-eee-901 > +++ a/drivers/platform/x86/eeepc-laptop.c > @@ -90,7 +90,7 @@ enum { > }; > > static const char *cm_getv[] = { > - "WLDG", NULL, NULL, NULL, > + "WLDG", "BTHG", NULL, NULL, > "CAMG", NULL, NULL, NULL, > NULL, "PBLG", NULL, NULL, > "CFVG", NULL, NULL, NULL, > @@ -99,7 +99,7 @@ static const char *cm_getv[] = { > }; > > static const char *cm_setv[] = { > - "WLDS", NULL, NULL, NULL, > + "WLDS", "BTHS", NULL, NULL, > "CAMS", NULL, NULL, NULL, > "SDSP", "PBLS", "HDPS", NULL, > "CFVS", NULL, NULL, NULL, > _ > -- 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
On Fri, 09 Jan 2009 16:24:09 -0500 (EST) Len Brown <lenb@kernel.org> wrote: > the original version of this patch is already in my tree > queued for linus. It's not in today's linux-next? -- 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
On Fri, 9 Jan 2009, Andrew Morton wrote: > On Fri, 09 Jan 2009 16:24:09 -0500 (EST) > Len Brown <lenb@kernel.org> wrote: > > > the original version of this patch is already in my tree > > queued for linus. > > It's not in today's linux-next? Yeah, and that was my fault. When I saw your e-mail I remembered the patch -- it had been sent a while back by a different author. I found the original it on a branch that I'd neglected to merge intot he acpi test branch, and so it was not in linux-next. So I cherry-picked it on top of my release branch that I've already asked Linus to pull. If Linus has already pulled my tree, it will make it into the next batch. sorry for the confusion. thanks, -Len Intel Open Source Technology Center -- 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
diff -puN drivers/platform/x86/eeepc-laptop.c~eeepc-laptop-enable-bluetooth-for-asus-eee-901 drivers/platform/x86/eeepc-laptop.c --- a/drivers/platform/x86/eeepc-laptop.c~eeepc-laptop-enable-bluetooth-for-asus-eee-901 +++ a/drivers/platform/x86/eeepc-laptop.c @@ -90,7 +90,7 @@ enum { }; static const char *cm_getv[] = { - "WLDG", NULL, NULL, NULL, + "WLDG", "BTHG", NULL, NULL, "CAMG", NULL, NULL, NULL, NULL, "PBLG", NULL, NULL, "CFVG", NULL, NULL, NULL, @@ -99,7 +99,7 @@ static const char *cm_getv[] = { }; static const char *cm_setv[] = { - "WLDS", NULL, NULL, NULL, + "WLDS", "BTHS", NULL, NULL, "CAMS", NULL, NULL, NULL, "SDSP", "PBLS", "HDPS", NULL, "CFVS", NULL, NULL, NULL,