Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Sat, 30 Dec 2000 04:10:59 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Sat, 30 Dec 2000 04:10:49 -0500 Received: from m11.boston.juno.com ([63.211.172.74]:62615 "EHLO m11.boston.juno.com") by vger.kernel.org with ESMTP id ; Sat, 30 Dec 2000 04:10:40 -0500 To: linux-kernel@vger.kernel.org Cc: torvalds@transmeta.com Date: Sat, 30 Dec 2000 03:33:42 -0500 Subject: [PATCH] test13-pre6 net/atm/lec.c Message-ID: <20001230.033349.-192941.1.fdavis112@juno.com> X-Mailer: Juno 5.0.15 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary=--__JNP_000_5510.0696.1d1b X-Juno-Line-Breaks: 9-6,7,9-25,26-32767 From: Frank Davis Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ----__JNP_000_5510.0696.1d1b Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hello, The following patch appears to fix 2 of the 3 undefined references: publish_netdev is still unresolved. Regards, Frank --- net/atm/lec.c.old Sat Dec 30 03:08:14 2000 +++ net/atm/lec.c Sat Dec 30 03:17:44 2000 @@ -772,10 +772,10 @@ size = sizeof(struct lec_priv); #ifdef CONFIG_TR if (is_trdev) - dev_lec[i] = prepare_trdev(NULL, size); + dev_lec[i] = init_trdev(NULL, size); else #endif - dev_lec[i] = prepare_etherdev(NULL, size); + dev_lec[i] = init_etherdev(NULL, size); if (!dev_lec[i]) return -ENOMEM; ----__JNP_000_5510.0696.1d1b Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: quoted-printable
Hello,
  The following patch appears to fix 2 of the 3 undefined = references:=20 publish_netdev is still unresolved.

Regards,

Frank

Sat Dec 30 03:08:= 14=20 2000
+++ net/atm/lec.c   = ; =20 Sat Dec 30 03:17:44 2000
@@ -772,10 +772,10 @@
        = ;        =20 size =3D sizeof(struct lec_priv);
 #ifdef CONFIG_TR
        = ;        =20 if (is_trdev)
-        = ;            &= nbsp;  =20 dev_lec[i] =3D prepare_trdev(NULL, size);
+        = ;            &= nbsp;  =20 dev_lec[i] =3D init_trdev(NULL, size);
        = ;        =20 else
 #endif
-<= SPAN=20 style=3D"mso-spacerun: yes">        = ;       =20 dev_lec[i] =3D prepare_etherdev(NULL, size);
+        = ;       =20 dev_lec[i] =3D init_etherdev(NULL, size);
        = ;        =20 if (!dev_lec[i])
        = ;            &= nbsp;   =20 return -ENOMEM;
 

----__JNP_000_5510.0696.1d1b-- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/