From patchwork Thu Oct 14 19:19:25 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: VDRU VDRU X-Patchwork-Id: 4609 Return-path: Envelope-to: mchehab@pedra Delivery-date: Thu, 14 Oct 2010 16:19:52 -0300 Received: from mchehab by pedra with local (Exim 4.72) (envelope-from ) id 1P6TLE-0003i7-F7 for mchehab@pedra; Thu, 14 Oct 2010 16:19:52 -0300 Received: from casper.infradead.org [85.118.1.10] by pedra with IMAP (fetchmail-6.3.17) for (single-drop); Thu, 14 Oct 2010 16:19:52 -0300 (BRT) Received: from vger.kernel.org ([209.132.180.67]) by casper.infradead.org with esmtp (Exim 4.72 #1 (Red Hat Linux)) id 1P6TL8-0001P3-Uh; Thu, 14 Oct 2010 19:19:47 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755917Ab0JNTTo (ORCPT + 1 other); Thu, 14 Oct 2010 15:19:44 -0400 Received: from mail-pv0-f174.google.com ([74.125.83.174]:53222 "EHLO mail-pv0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755198Ab0JNTTn (ORCPT ); Thu, 14 Oct 2010 15:19:43 -0400 Received: by pvc7 with SMTP id 7so619454pvc.19 for ; Thu, 14 Oct 2010 12:19:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:content-type :content-transfer-encoding; bh=FEEruF6Ju69tgtTY4gCqN+Mp6tSVAtP2NNEGLGL9kvU=; b=fJUjGWCoaoecSG/vaBQJhdkHNeb+9ENz93Xcj+hl9oIYxo5KGp0+61pMAiPTovs18v 7dbaO3Jk9tdUBQRWYPoBEywVd7+3Q7H60x2bwP2TxO3nZaKyVnfDI6x6BcM8vCr5lnAA 81YFJnrw744BgrvHdQF9VCX8lRFTZ1HI/4Wj8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=ovw0trWSu08DB2o1FUsvTGCHNOXqLeoBmPtfrfKUfjX5Hbvo/K+TKbOZZFs+/PWTKp C3SDZDaKnPrMIS5CIR86DvJhNEQ8fiNikYllK2yizyCGxvV+WyEucMcZcSv9ntrAf2cn sf17qBSaXov+beyNatq1HUF5ROF4b11MKbwDs= Received: by 10.142.221.16 with SMTP id t16mr9198010wfg.435.1287083976494; Thu, 14 Oct 2010 12:19:36 -0700 (PDT) Received: from [192.168.0.4] (174-24-140-227.tukw.qwest.net [174.24.140.227]) by mx.google.com with ESMTPS id w14sm14112417wfd.6.2010.10.14.12.19.29 (version=SSLv3 cipher=RC4-MD5); Thu, 14 Oct 2010 12:19:33 -0700 (PDT) Message-ID: <4CB757BD.1070302@gmail.com> Date: Thu, 14 Oct 2010 12:19:25 -0700 From: "D. K." User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.9) Gecko/20100915 Thunderbird/3.1.4 MIME-Version: 1.0 To: linux-media@vger.kernel.org Subject: [PATCH] Fix av7110 driver name (resend) Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Sender: This patch simply changes the name of the av7110 driver to "av7110" instead of the generic "dvb" it's set to currently. Although it's somewhat trivial, it still seems appropriate to fix the name to be descriptive of the driver. This patch was already ack'ed by other users but the original email got mangled I guess so it was never submitted. The original email is: "[PATCH] Fix av7110 driver name" Signed-off-by: Derek Kelly > ---------- --- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff -pruN v4l-dvb.orig/linux/drivers/media/dvb/ttpci/av7110.c v4l-dvb/linux/drivers/media/dvb/ttpci/av7110.c --- v4l-dvb.orig/linux/drivers/media/dvb/ttpci/av7110.c 2010-10-14 11:12:23.000000000 -0700 +++ v4l-dvb/linux/drivers/media/dvb/ttpci/av7110.c 2010-10-14 12:16:19.000000000 -0700 @@ -2893,7 +2893,7 @@ MODULE_DEVICE_TABLE(pci, pci_tbl); static struct saa7146_extension av7110_extension_driver = { - .name = "dvb", + .name = "av7110", .flags = SAA7146_USE_I2C_IRQ, .module = THIS_MODULE,