2003-07-25 10:16:02

by Jérôme Augé

[permalink] [raw]
Subject: [PATCH] fix 2.6.0-test1 *** Warning: "llc_oui" [net/sched/sch_atm.ko] undefined!

Fix a typo in 'net/atm/Makefile' that gives a 'Warning: "llc_oui"
[net/sched/sch_atm.ko] undefined!' when building modules:

--- net/atm/Makefile.old 2003-07-24 16:36:47.000000000 +0200
+++ net/atm/Makefile 2003-07-24 16:36:55.000000000 +0200
@@ -10,7 +10,7 @@
atm-$(subst m,y,$(CONFIG_ATM_CLIP)) += ipcommon.o
obj-$(CONFIG_ATM_BR2684) += br2684.o
atm-$(subst m,y,$(CONFIG_ATM_BR2684)) += ipcommon.o
-atm-$(subst m,y,$CONFIG_NET_SCH_ATM)) += ipcommon.o
+atm-$(subst m,y,$(CONFIG_NET_SCH_ATM)) += ipcommon.o
atm-$(CONFIG_PROC_FS) += proc.o

obj-$(CONFIG_ATM_LANE) += lec.o

Regards,
J?r?me

--


Subject: Re: [PATCH] fix 2.6.0-test1 *** Warning: "llc_oui" [net/sched/sch_atm.ko] undefined!

please apply to 2.6 -- thanks

In message <[email protected]>,=?iso-8859-15?B?Suly9
G1lIEF1Z+k=?= writes:
>Fix a typo in 'net/atm/Makefile' that gives a 'Warning: "llc_oui"
>[net/sched/sch_atm.ko] undefined!' when building modules:


[atm]: fix a typo in net/atm/Makefile (from [email protected])

# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
# ChangeSet 1.1599 -> 1.1600
# net/atm/Makefile 1.10 -> 1.11
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 03/07/30 [email protected] 1.1600
# fix a typo in net/atm/Makefile (from [email protected])
# --------------------------------------------
#
diff -Nru a/net/atm/Makefile b/net/atm/Makefile
--- a/net/atm/Makefile Wed Jul 30 13:12:21 2003
+++ b/net/atm/Makefile Wed Jul 30 13:12:21 2003
@@ -10,7 +10,7 @@
atm-$(subst m,y,$(CONFIG_ATM_CLIP)) += ipcommon.o
obj-$(CONFIG_ATM_BR2684) += br2684.o
atm-$(subst m,y,$(CONFIG_ATM_BR2684)) += ipcommon.o
-atm-$(subst m,y,$CONFIG_NET_SCH_ATM)) += ipcommon.o
+atm-$(subst m,y,$(CONFIG_NET_SCH_ATM)) += ipcommon.o
atm-$(CONFIG_PROC_FS) += proc.o

obj-$(CONFIG_ATM_LANE) += lec.o

2003-07-30 23:54:34

by David Miller

[permalink] [raw]
Subject: Re: [PATCH] fix 2.6.0-test1 *** Warning: "llc_oui" [net/sched/sch_atm.ko] undefined!

On Wed, 30 Jul 2003 13:10:32 -0400
chas williams <[email protected]> wrote:

> please apply to 2.6 -- thanks

Applied, thanks Chas.