Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S262058AbVD0WSQ (ORCPT ); Wed, 27 Apr 2005 18:18:16 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S262055AbVD0WQx (ORCPT ); Wed, 27 Apr 2005 18:16:53 -0400 Received: from e33.co.us.ibm.com ([32.97.110.131]:38275 "EHLO e33.co.us.ibm.com") by vger.kernel.org with ESMTP id S262054AbVD0WQV (ORCPT ); Wed, 27 Apr 2005 18:16:21 -0400 Date: Wed, 27 Apr 2005 17:16:08 -0500 (CDT) From: Kylene Hall X-X-Sender: kjhall@jo.austin.ibm.com To: Jeff Garzik cc: Greg K-H , linux-kernel@vger.kernel.org Subject: [PATCH: 3 of 12] Fix TPM driver --remove unnecessary module stuff In-Reply-To: <422FC42B.7@pobox.com> Message-ID: References: <1110415321526@kroah.com> <422FC42B.7@pobox.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1226 Lines: 55 On Wed, 9 Mar 2005, Jeff Garzik wrote: > Greg KH wrote: > > + > > +static int __init init_tpm(void) > > +{ > > + return 0; > > +} > > + > > +static void __exit cleanup_tpm(void) > > +{ > > + > > +} > > + > > +module_init(init_tpm); > > +module_exit(cleanup_tpm); > > why? just delete these, I would say. > No reason for these module definitions. This patch removes them. Signed-off-by: Kylene Hall --- --- linux-2.6.12-rc2/drivers/chat/tpm/tpm.c 2005-04-21 17:45:30.000000000 -0500 +++ linux-2.6.12-rc2-tpmdd/drivers/char/tpm/tpm.c 2005-04-21 17:36:59.000000000 -0500 @@ -668,19 +668,6 @@ dev_num_search_complete: EXPORT_SYMBOL_GPL(tpm_register_hardware); -static int __init init_tpm(void) -{ - return 0; -} - -static void __exit cleanup_tpm(void) -{ - -} - -module_init(init_tpm); -module_exit(cleanup_tpm); - MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)"); MODULE_DESCRIPTION("TPM Driver"); MODULE_VERSION("2.0"); - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/