From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexander Beregalov Subject: [PATCH] befs: fix build on parisc Date: Wed, 1 Apr 2009 17:32:58 +0400 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit To: LKML , rathamahata@php4.ru, linux-fsdevel@vger.kernel.org Return-path: Received: from mail-ew0-f165.google.com ([209.85.219.165]:62587 "EHLO mail-ew0-f165.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1761967AbZDANdC (ORCPT ); Wed, 1 Apr 2009 09:33:02 -0400 Sender: linux-fsdevel-owner@vger.kernel.org List-ID: Fix this build error on parisc: fs/befs/super.c:85: error: 'PAGE_SIZE' undeclared Signed-off-by: Alexander Beregalov --- fs/befs/super.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/fs/befs/super.c b/fs/befs/super.c index 41f2b4d..ca40f82 100644 --- a/fs/befs/super.c +++ b/fs/befs/super.c @@ -8,6 +8,7 @@ */ #include +#include /* for PAGE_SIZE */ #include "befs.h" #include "super.h"