mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 08:36:24 +08:00
Without lowsyslog() *llinfo() is not useful. Eliminate and replace with *info().
This commit is contained in:
@@ -315,7 +315,7 @@ static int automount_unmount(FAR struct automounter_state_s *priv)
|
||||
|
||||
else
|
||||
{
|
||||
finfo("ERROR: umount2 failed: %d\n", errcode);
|
||||
ferr("ERROR: umount2 failed: %d\n", errcode);
|
||||
return -errcode;
|
||||
}
|
||||
}
|
||||
@@ -363,7 +363,7 @@ static void automount_timeout(int argc, uint32_t arg1, ...)
|
||||
(FAR struct automounter_state_s *)((uintptr_t)arg1);
|
||||
int ret;
|
||||
|
||||
fllinfo("Timeout!\n");
|
||||
finfo("Timeout!\n");
|
||||
DEBUGASSERT(argc == 1 && priv);
|
||||
|
||||
/* Check the state of things. This timeout at the interrupt level and
|
||||
@@ -372,7 +372,7 @@ static void automount_timeout(int argc, uint32_t arg1, ...)
|
||||
* there should be no pending work.
|
||||
*/
|
||||
|
||||
fllinfo("inserted=%d\n", priv->inserted);
|
||||
finfo("inserted=%d\n", priv->inserted);
|
||||
DEBUGASSERT(!priv->inserted && work_available(&priv->work));
|
||||
|
||||
/* Queue work to occur immediately. */
|
||||
@@ -463,7 +463,7 @@ static int automount_interrupt(FAR const struct automount_lower_s *lower,
|
||||
|
||||
DEBUGASSERT(lower && priv && priv->lower == lower);
|
||||
|
||||
fllinfo("inserted=%d\n", inserted);
|
||||
finfo("inserted=%d\n", inserted);
|
||||
|
||||
/* Cancel any pending work. We could get called multiple times if, for
|
||||
* example there is bounce in the detection mechanism. Work is performed
|
||||
|
||||
Reference in New Issue
Block a user