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:
@@ -244,7 +244,7 @@ static inline void lpc31_initsrc(void)
|
||||
char devname[16];
|
||||
#endif
|
||||
|
||||
pgllinfo("Initializing %s\n", CONFIG_PAGING_BINPATH);
|
||||
pginfo("Initializing %s\n", CONFIG_PAGING_BINPATH);
|
||||
|
||||
/* No, do we need to mount an SD device? */
|
||||
|
||||
@@ -300,7 +300,7 @@ static inline void lpc31_initsrc(void)
|
||||
{
|
||||
/* No... the initialize now */
|
||||
|
||||
pgllinfo("Initializing\n");
|
||||
pginfo("Initializing\n");
|
||||
|
||||
/* First get an instance of the SPI device interface */
|
||||
|
||||
@@ -327,7 +327,7 @@ static inline void lpc31_initsrc(void)
|
||||
ret = MTD_IOCTL(g_pgsrc.mtd, MTDIOC_GEOMETRY, (unsigned long)&g_pgsrc.geo);
|
||||
DEBUGASSERT(ret >= 0);
|
||||
capacity = g_pgsrc.geo.erasesize*g_pgsrc.geo.neraseblocks;
|
||||
pgllinfo("capacity: %d\n", capacity);
|
||||
pginfo("capacity: %d\n", capacity);
|
||||
DEBUGASSERT(capacity >= (CONFIG_EA3131_PAGING_BINOFFSET + PG_TEXT_VSIZE));
|
||||
#endif
|
||||
|
||||
@@ -412,7 +412,7 @@ int up_fillpage(FAR struct tcb_s *tcb, FAR void *vpage)
|
||||
off_t offset;
|
||||
#endif
|
||||
|
||||
pgllinfo("TCB: %p vpage: %p far: %08x\n", tcb, vpage, tcb->xcp.far);
|
||||
pginfo("TCB: %p vpage: %p far: %08x\n", tcb, vpage, tcb->xcp.far);
|
||||
DEBUGASSERT(tcb->xcp.far >= PG_PAGED_VBASE && tcb->xcp.far < PG_PAGED_VEND);
|
||||
|
||||
/* If BINPATH is defined, then it is the full path to a file on a mounted file
|
||||
@@ -475,7 +475,7 @@ int up_fillpage(FAR struct tcb_s *tcb, FAR void *vpage)
|
||||
|
||||
int up_fillpage(FAR struct tcb_s *tcb, FAR void *vpage, up_pgcallback_t pg_callback)
|
||||
{
|
||||
pgllinfo("TCB: %p vpage: %d far: %08x\n", tcb, vpage, tcb->xcp.far);
|
||||
pginfo("TCB: %p vpage: %d far: %08x\n", tcb, vpage, tcb->xcp.far);
|
||||
DEBUGASSERT(tcb->xcp.far >= PG_PAGED_VBASE && tcb->xcp.far < PG_PAGED_VEND);
|
||||
|
||||
#if defined(CONFIG_PAGING_BINPATH)
|
||||
|
||||
Reference in New Issue
Block a user