From mboxrd@z Thu Jan 1 00:00:00 1970 From: J Witteveen Subject: [PATCH] Samsung Laptop platform driver: support N510 Date: Sun, 3 Jul 2011 13:15:44 +0200 Message-ID: <20110703111544.GA21626@liacs.nl> Reply-To: j.witteveen@gmail.com Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Return-path: Received: from platinum.liacs.nl ([132.229.131.22]:50059 "EHLO platinum.liacs.nl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750845Ab1GCLUg (ORCPT ); Sun, 3 Jul 2011 07:20:36 -0400 Content-Disposition: inline Sender: platform-driver-x86-owner@vger.kernel.org List-ID: To: linux-kernel@vger.kernel.org Cc: mjg@redhat.com, gregkh@suse.de, platform-driver-x86@vger.kernel.org Dear all, It appears my previous message has gone unnoticed. This is my second shot. The patch below adds the N510 netbook to the li= st of supported hardware. Regards, - Jouke ----- Forwarded message from J Witteveen ----- Date: Sun, 26 Jun 2011 17:08:55 +0200 =46rom: J Witteveen To: mjg@redhat.com Cc: platform-driver-x86@vger.kernel.org, linux-kernel@vger.kernel.org Bcc: j.witteveen@gmail.com Subject: Re: [PATCH] Platform: add Samsung Laptop platform driver User-Agent: Mutt/1.5.17 (2007-11-01) On Fri, Feb 11, 2011 at 10:17, Jouke Witteveen = wrote: > On Wed, Feb 9, 2011 at 23:40, Greg KH wrote: >> From: Greg Kroah-Hartman >> >> This adds the samsung-laptop driver to the kernel. =A0It now support= s >> all known Samsung laptops. >> > > I don't see the N510, is this intentional? The netbook does not diffe= r > that much from some that are included. > The N510 benefits from this code as well. Below is a patch to include s= upport. Signed-off-by: Jouke Witteveen Thanks, - Jouke --- a/drivers/platform/x86/samsung-laptop.c 2011-06-26 16:18:06.5178404= 68 +0200 +++ b/drivers/platform/x86/samsung-laptop.c 2011-06-26 16:19:14.6775746= 44 +0200 @@ -521,6 +521,16 @@ static struct dmi_system_id __initdata s .callback =3D dmi_check_cb, }, { + .ident =3D "N510", + .matches =3D { + DMI_MATCH(DMI_SYS_VENDOR, + "SAMSUNG ELECTRONICS CO., LTD."), + DMI_MATCH(DMI_PRODUCT_NAME, "N510"), + DMI_MATCH(DMI_BOARD_NAME, "N510"), + }, + .callback =3D dmi_check_cb, + }, + { .ident =3D "X125", .matches =3D { DMI_MATCH(DMI_SYS_VENDOR, ----- End forwarded message -----