Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755570AbYGUWVG (ORCPT ); Mon, 21 Jul 2008 18:21:06 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752821AbYGUWUz (ORCPT ); Mon, 21 Jul 2008 18:20:55 -0400 Received: from mx1.redhat.com ([66.187.233.31]:56927 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752787AbYGUWUz (ORCPT ); Mon, 21 Jul 2008 18:20:55 -0400 Date: Mon, 21 Jul 2008 18:13:55 -0400 From: Dave Jones To: Linux Kernel Subject: Re: Fix icom serial compile. Message-ID: <20080721221355.GD3472@redhat.com> Mail-Followup-To: Dave Jones , Linux Kernel References: <20080721211659.GA29106@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080721211659.GA29106@redhat.com> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 997 Lines: 24 drivers/serial/icom.c: In function 'recv_interrupt': drivers/serial/icom.c:733: error: 'struct uart_info' has no member named 'tty' Signed-off-by: Dave Jones --- linux-2.6.26.noarch/drivers/serial/icom.c~ 2008-07-21 18:08:30.000000000 -0400 +++ linux-2.6.26.noarch/drivers/serial/icom.c 2008-07-21 18:13:00.000000000 -0400 @@ -730,7 +730,7 @@ static void xmit_interrupt(u16 port_int_ static void recv_interrupt(u16 port_int_reg, struct icom_port *icom_port) { short int count, rcv_buff; - struct tty_struct *tty = icom_port->uart_port.info->tty; + struct tty_struct *tty = icom_port->uart_port.info->port.tty; unsigned short int status; struct uart_icount *icount; unsigned long offset; -- http://www.codemonkey.org.uk -- 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/