Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8f026f75accb8c9f1179a4b57a5019af36471046
Commit:     8f026f75accb8c9f1179a4b57a5019af36471046
Parent:     8b099a390defd294a3832fe73626c25072967316
Author:     Ben Dooks <[EMAIL PROTECTED]>
AuthorDate: Mon May 28 19:51:59 2007 +0100
Committer:  David Woodhouse <[EMAIL PROTECTED]>
CommitDate: Thu Jun 28 20:24:06 2007 +0100

    [MTD] mtd_blkdevs.c: do not export 'mtd_blktrans_ops'
    
    The mtd_blktrans_ops is not defined in any of the headers
    and is indeed not used elsewhere in the kernel, so mark it
    as static to reduce the warnings from sparse
    
    drivers/mtd/mtd_blkdevs.c:204:32: warning: symbol 'mtd_blktrans_ops' was 
not declared. Should it be static?
    
    Signed-off-by: Ben Dooks <[EMAIL PROTECTED]>
    Signed-off-by: David Woodhouse <[EMAIL PROTECTED]>
---
 drivers/mtd/mtd_blkdevs.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mtd/mtd_blkdevs.c b/drivers/mtd/mtd_blkdevs.c
index 51bc7e2..7816605 100644
--- a/drivers/mtd/mtd_blkdevs.c
+++ b/drivers/mtd/mtd_blkdevs.c
@@ -201,7 +201,7 @@ static int blktrans_ioctl(struct inode *inode, struct file 
*file,
        }
 }
 
-struct block_device_operations mtd_blktrans_ops = {
+static struct block_device_operations mtd_blktrans_ops = {
        .owner          = THIS_MODULE,
        .open           = blktrans_open,
        .release        = blktrans_release,
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to