Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S266371AbTGEPpe (ORCPT ); Sat, 5 Jul 2003 11:45:34 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S266372AbTGEPpe (ORCPT ); Sat, 5 Jul 2003 11:45:34 -0400 Received: from hq.pm.waw.pl ([195.116.170.10]:3538 "EHLO hq.pm.waw.pl") by vger.kernel.org with ESMTP id S266371AbTGEPpd (ORCPT ); Sat, 5 Jul 2003 11:45:33 -0400 To: Linus Torvalds Cc: lkml Subject: [PATCH] 2.5 trivial generic HDLC update From: Krzysztof Halasa Date: 05 Jul 2003 16:16:25 +0200 Message-ID: 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: 746 Lines: 23 Hi, Please apply this trivial fix to Linux 2.5. Thanks. -- Krzysztof Halasa Network Administrator --- linux-2.5.orig/drivers/net/wan/hdlc_generic.c 2003-05-27 03:00:23.000000000 +0200 +++ linux-2.5/drivers/net/wan/hdlc_generic.c 2003-07-05 16:01:51.000000000 +0200 @@ -177,11 +177,8 @@ struct packet_type hdlc_packet_type= { - __constant_htons(ETH_P_HDLC), - NULL, - hdlc_rcv, - NULL, - NULL + .type = __constant_htons(ETH_P_HDLC), + .func = hdlc_rcv, }; - 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/