From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S263286AbVCDWRE (ORCPT ); Fri, 4 Mar 2005 17:17:04 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S263044AbVCDWMf (ORCPT ); Fri, 4 Mar 2005 17:12:35 -0500 Received: from mail.kroah.org ([69.55.234.183]:54177 "EHLO perch.kroah.org") by vger.kernel.org with ESMTP id S263143AbVCDUyY convert rfc822-to-8bit (ORCPT ); Fri, 4 Mar 2005 15:54:24 -0500 Cc: greg@kroah.com Subject: [PATCH] w1: fix some compiler warnings generated by the last "static" patch. In-Reply-To: <11099687824109@kroah.com> X-Mailer: gregkh_patchbomb Date: Fri, 4 Mar 2005 12:39:42 -0800 Message-Id: <1109968782996@kroah.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Reply-To: Greg K-H To: linux-kernel@vger.kernel.org Content-Transfer-Encoding: 7BIT From: Greg KH Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org ChangeSet 1.2083, 2005/03/02 16:59:08-08:00, greg@kroah.com [PATCH] w1: fix some compiler warnings generated by the last "static" patch. Signed-off-by: Greg Kroah-Hartman drivers/w1/dscore.c | 3 --- drivers/w1/dscore.h | 3 --- 2 files changed, 6 deletions(-) diff -Nru a/drivers/w1/dscore.c b/drivers/w1/dscore.c --- a/drivers/w1/dscore.c 2005-03-04 12:38:05 -08:00 +++ b/drivers/w1/dscore.c 2005-03-04 12:38:05 -08:00 @@ -45,9 +45,6 @@ int ds_reset(struct ds_device *, struct ds_status *); int ds_detect(struct ds_device *, struct ds_status *); int ds_stop_pulse(struct ds_device *, int); -int ds_send_data(struct ds_device *, unsigned char *, int); -int ds_recv_data(struct ds_device *, unsigned char *, int); -int ds_recv_status(struct ds_device *, struct ds_status *); struct ds_device * ds_get_device(void); void ds_put_device(struct ds_device *); diff -Nru a/drivers/w1/dscore.h b/drivers/w1/dscore.h --- a/drivers/w1/dscore.h 2005-03-04 12:38:05 -08:00 +++ b/drivers/w1/dscore.h 2005-03-04 12:38:05 -08:00 @@ -161,9 +161,6 @@ int ds_reset(struct ds_device *, struct ds_status *); int ds_detect(struct ds_device *, struct ds_status *); int ds_stop_pulse(struct ds_device *, int); -int ds_send_data(struct ds_device *, unsigned char *, int); -int ds_recv_data(struct ds_device *, unsigned char *, int); -int ds_recv_status(struct ds_device *, struct ds_status *); struct ds_device * ds_get_device(void); void ds_put_device(struct ds_device *); int ds_write_block(struct ds_device *, u8 *, int);