From patchwork Mon Sep 24 14:30:35 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gianluca Gennari X-Patchwork-Id: 1498031 Return-Path: X-Original-To: patchwork-linux-media@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 11B26DF280 for ; Mon, 24 Sep 2012 14:30:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753644Ab2IXOat (ORCPT ); Mon, 24 Sep 2012 10:30:49 -0400 Received: from mail-bk0-f46.google.com ([209.85.214.46]:54440 "EHLO mail-bk0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753143Ab2IXOas (ORCPT ); Mon, 24 Sep 2012 10:30:48 -0400 Received: by bkcjk13 with SMTP id jk13so952104bkc.19 for ; Mon, 24 Sep 2012 07:30:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer; bh=Gj7NG2j5Fzn6uPWaAH7nvZRXEhcI7aaxfTMLr5ddGPs=; b=QT0WampPatFRqiT2YEfo6GcPImcI4CXwMB9+xQnT64wf47YEUTlwxGvK2VMttm1bpM zR0KIqYsSXFeH+Pn08tgeGxT8r8GJeM0Q9LkoTby1njYbwUaCGQ3CNacPbgi6VcBBSie p3gir9VgW35sVo0ZmJZQY+sFeTrYzNh+VVtHgXvqOeNtOLNT87FFFvNky75FhXQmc2OS XcePS2G90Zx9uDRhcVafznHnoHsH8R2f+t+84cz3yKEJUtslcGweITHr9vCNnMRTMiHM 0K2+Wz/fJSBLFNrRxefHwyzUKQGv8mutMSknkv8a5SKkKw95bzYV8L2w2OH22YespfL/ BDKw== Received: by 10.204.129.27 with SMTP id m27mr1982518bks.115.1348497047253; Mon, 24 Sep 2012 07:30:47 -0700 (PDT) Received: from localhost.localdomain (93-50-34-119.ip150.fastwebnet.it. [93.50.34.119]) by mx.google.com with ESMTPS id z25sm4316402bkz.15.2012.09.24.07.30.41 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 24 Sep 2012 07:30:46 -0700 (PDT) From: Gianluca Gennari To: linux-media@vger.kernel.org, mchehab@redhat.com, hans.verkuil@cisco.com Cc: Gianluca Gennari Subject: [PATCH] media_build: add module_pci_driver to compat.h Date: Mon, 24 Sep 2012 16:30:35 +0200 Message-Id: <1348497035-28470-1-git-send-email-gennarone@gmail.com> X-Mailer: git-send-email 1.7.0.4 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org This patch corrects this warnings on a Ubuntu 10.04 system with kernel 2.6.32-43: bt87x.c:972: warning: data definition has no type or storage class bt87x.c:972: warning: type defaults to 'int' in declaration of 'module_pci_driver' bt87x.c:972: warning: parameter names (without types) in function declaration bt87x.c:965: warning: 'bt87x_driver' defined but not used core.c:321: warning: data definition has no type or storage class core.c:321: warning: type defaults to 'int' in declaration of 'module_pci_driver' core.c:321: warning: parameter names (without types) in function declaration core.c:314: warning: 'solo_pci_driver' defined but not used Signed-off-by: Gianluca Gennari --- v4l/compat.h | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/v4l/compat.h b/v4l/compat.h index fdc6d4a..8d5c13a 100644 --- a/v4l/compat.h +++ b/v4l/compat.h @@ -1064,4 +1064,10 @@ static inline int usb_endpoint_maxp(const struct usb_endpoint_descriptor *epd) #define printk_ratelimited printk #endif +#ifndef module_pci_driver +#define module_pci_driver(__pci_driver) \ + module_driver(__pci_driver, pci_register_driver, \ + pci_unregister_driver) +#endif + #endif /* _COMPAT_H */