FTL: Make it clear the the unlink method has not been implemented

This commit is contained in:
Gregory Nutt 2016-04-15 07:03:28 -06:00
parent 16666fdb84
commit 84cd720479

View File

@ -1,7 +1,7 @@
/**************************************************************************** /****************************************************************************
* drivers/mtd/ftl.c * drivers/mtd/ftl.c
* *
* Copyright (C) 2009, 2011-2012 Gregory Nutt. All rights reserved. * Copyright (C) 2009, 2011-2012, 2016 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@ -115,6 +115,9 @@ static const struct block_operations g_bops =
#endif #endif
ftl_geometry, /* geometry */ ftl_geometry, /* geometry */
ftl_ioctl /* ioctl */ ftl_ioctl /* ioctl */
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
, 0 /* unlink */
#endif
}; };
/**************************************************************************** /****************************************************************************