This message generated a parse failure. Raw output follows here. Please use 'back' to navigate. From devnull@lkml.org Fri Apr 26 06:38:30 2024 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S264005AbTJFJ2I (ORCPT ); Mon, 6 Oct 2003 05:28:08 -0400 Received: from d12lmsgate-2.de.ibm.com ([194.196.100.235]:10718 "EHLO d12lmsgate.de.ibm.com") by vger.kernel.org with ESMTP id S263978AbTJFJ1l (ORCPT ); Mon, 6 Oct 2003 05:27:41 -0400 Received: from d12relay02.megacenter.de.ibm.com (d12relay02.megacenter.de.ibm.com [9.149.165.196]) by d12lmsgate.de.ibm.com (8.12.10/8.12.8) with ESMTP id h969RQoS139246; Mon, 6 Oct 2003 11:27:26 +0200 Received: from mschwid3.boeblingen.de.ibm.com (d12av02.megacenter.de.ibm.com [9.149.165.228]) by d12relay02.megacenter.de.ibm.com (8.12.9/NCO/VER6.6) with ESMTP id h969RPIQ244864; Mon, 6 Oct 2003 11:27:25 +0200 Received: from sky by mschwid3.boeblingen.de.ibm.com with local (Exim 3.35 #1 (Debian)) id 1A6Rdo-0000Tw-00; Mon, 06 Oct 2003 11:26:56 +0200 Date: Mon, 6 Oct 2003 11:26:56 +0200 From: Martin Schwidefsky To: torvalds@osdl.org, linux-kernel@vger.kernel.org Subject: [PATCH] s390 (5/7): iucv driver. Message-Id: <20031006092656.GA1845@mschwid3.boeblingen.de.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.28i Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org - Add dummy release function to iucv bus. diffstat: drivers/s390/net/iucv.c | 12 +++++++++--- 1 files changed, 9 insertions(+), 3 deletions(-) diff -urN linux-2.6/drivers/s390/net/iucv.c linux-2.6-s390/drivers/s390/net/iucv.c --- linux-2.6/drivers/s390/net/iucv.c Sun Sep 28 02:50:09 2003 +++ linux-2.6-s390/drivers/s390/net/iucv.c Mon Oct 6 10:59:27 2003 @@ -1,5 +1,5 @@ /* - * $Id: iucv.c,v 1.14 2003/09/23 16:48:17 mschwide Exp $ + * $Id: iucv.c,v 1.15 2003/10/01 09:25:15 mschwide Exp $ * * IUCV network driver * @@ -29,7 +29,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - * RELEASE-TAG: IUCV lowlevel driver $Revision: 1.14 $ + * RELEASE-TAG: IUCV lowlevel driver $Revision: 1.15 $ * */ @@ -79,6 +79,11 @@ return 0; } +static void +iucv_root_release (struct device *dev) +{ +} + struct bus_type iucv_bus = { .name = "iucv", .match = iucv_bus_match, @@ -86,6 +91,7 @@ struct device iucv_root = { .bus_id = "iucv", + .release = iucv_root_release, }; /* General IUCV interrupt structure */ @@ -349,7 +355,7 @@ static void iucv_banner(void) { - char vbuf[] = "$Revision: 1.14 $"; + char vbuf[] = "$Revision: 1.15 $"; char *version = vbuf; if ((version = strchr(version, ':'))) { - 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/