Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Wed, 19 Jun 2002 22:18:09 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Wed, 19 Jun 2002 22:18:08 -0400 Received: from samba.sourceforge.net ([198.186.203.85]:27337 "HELO lists.samba.org") by vger.kernel.org with SMTP id ; Wed, 19 Jun 2002 22:18:07 -0400 Date: Thu, 20 Jun 2002 12:18:40 +1000 From: David Gibson To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, trivial@rustcorp.com.au Subject: [TRIVIAL] Missing tqueue.h in drivers/char/genrtc.c Message-ID: <20020620021840.GB9326@zax> Mail-Followup-To: David Gibson , Linus Torvalds , linux-kernel@vger.kernel.org, trivial@rustcorp.com.au Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1144 Lines: 29 Linus, please apply. This fixes a compile problem on PPC in drivers/char/genrtc.c. It needs struct tq_struct, defined in tqueue.h, which must formerly have been indirectly included. With the recent removal of a bunch of includes, it isn't. This patch includes it directly. diff -urN /home/dgibson/kernel/linuxppc-2.5/drivers/char/genrtc.c linux-bluefish/drivers/char/genrtc.c --- /home/dgibson/kernel/linuxppc-2.5/drivers/char/genrtc.c Fri Jun 14 10:15:07 2002 +++ linux-bluefish/drivers/char/genrtc.c Thu Jun 20 12:01:52 2002 @@ -47,6 +47,7 @@ #include #include #include +#include #include #include -- David Gibson | For every complex problem there is a david@gibson.dropbear.id.au | solution which is simple, neat and | wrong. -- H.L. Mencken http://www.ozlabs.org/people/dgibson - 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/