From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752256Ab1IWU3J (ORCPT ); Fri, 23 Sep 2011 16:29:09 -0400 Received: from mail131.messagelabs.com ([216.82.242.99]:57806 "EHLO mail131.messagelabs.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752191Ab1IWU3H (ORCPT ); Fri, 23 Sep 2011 16:29:07 -0400 X-Env-Sender: hartleys@visionengravers.com X-Msg-Ref: server-12.tower-131.messagelabs.com!1316809699!1895627!62 X-Originating-IP: [216.166.12.31] X-StarScan-Version: 6.3.6; banners=-,-,- X-VirusChecked: Checked From: H Hartley Sweeten To: Linux Kernel Subject: [PATCH] dlm/ast.c: include ast.h to pickup function definitions Date: Fri, 23 Sep 2011 13:28:54 -0700 User-Agent: KMail/1.9.9 CC: , , MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-ID: <201109231328.55055.hartleys@visionengravers.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This quiets the following sparse noise: warning: symbol 'dlm_add_lkb_callback' was not declared. Should it be static? warning: symbol 'dlm_rem_lkb_callback' was not declared. Should it be static? warning: symbol 'dlm_add_cb' was not declared. Should it be static? warning: symbol 'dlm_callback_work' was not declared. Should it be static? warning: symbol 'dlm_callback_start' was not declared. Should it be static? warning: symbol 'dlm_callback_stop' was not declared. Should it be static? warning: symbol 'dlm_callback_suspend' was not declared. Should it be static? warning: symbol 'dlm_callback_resume' was not declared. Should it be static? Cc: Christine Caulfield Cc: David Teigland --- diff --git a/fs/dlm/ast.c b/fs/dlm/ast.c index 90e5997..43f33c0 100644 --- a/fs/dlm/ast.c +++ b/fs/dlm/ast.c @@ -12,6 +12,7 @@ ******************************************************************************/ #include "dlm_internal.h" +#include "ast.h" #include "lock.h" #include "user.h"