arm/chip/sdio/muxbus: comment all undefined symbols

comment all undefined symbols to avoid build break if CONFIG_SDIO_MUXBUS enabled

Signed-off-by: chao an <anchao@xiaomi.com>
This commit is contained in:
chao an 2023-03-22 11:44:25 +08:00 committed by Alan Carvalho de Assis
parent 21ffb4de72
commit 0eae218b49
11 changed files with 56 additions and 13 deletions

View File

@ -1375,8 +1375,12 @@ static int imxrt_lock(struct sdio_dev_s *dev, bool lock)
{
/* The multiplex bus is part of board support package. */
imxrt_muxbus_sdio_lock((dev - g_sdhcdev) /
sizeof(struct imxrt_dev_s), lock);
/* FIXME: Implement the below function to support bus share:
*
* imxrt_muxbus_sdio_lock((dev - g_sdhcdev) /
* sizeof(struct imxrt_dev_s), lock);
*/
return OK;
}
#endif

View File

@ -1202,7 +1202,11 @@ static int kinetis_lock(struct sdio_dev_s *dev, bool lock)
* bus is part of board support package.
*/
kinetis_muxbus_sdio_lock(lock);
/* FIXME: Implement the below function to support bus share:
*
* kinetis_muxbus_sdio_lock(lock);
*/
return OK;
}
#endif

View File

@ -1382,7 +1382,11 @@ static int lpc17_40_lock(struct sdio_dev_s *dev, bool lock)
* bus is part of board support package.
*/
lpc17_40_muxbus_sdio_lock(lock);
/* FIXME: Implement the below function to support bus share:
*
* lpc17_40_muxbus_sdio_lock(lock);
*/
return OK;
}
#endif

View File

@ -1201,7 +1201,11 @@ static int lpc43_lock(struct sdio_dev_s *dev, bool lock)
* bus is part of board support package.
*/
lpc43_muxbus_sdio_lock(lock);
/* FIXME: Implement the below function to support bus share:
*
* lpc43_muxbus_sdio_lock(lock);
*/
return OK;
}
#endif

View File

@ -1197,7 +1197,11 @@ static int lpc54_lock(struct sdio_dev_s *dev, bool lock)
* bus is part of board support package.
*/
lpc54_muxbus_sdio_lock(lock);
/* FIXME: Implement the below function to support bus share:
*
* lpc54_muxbus_sdio_lock(lock);
*/
return OK;
}
#endif

View File

@ -1473,8 +1473,12 @@ static int sam_lock(struct sdio_dev_s *dev, bool lock)
{
/* The multiplex bus is part of board support package. */
sam_muxbus_sdio_lock((dev - g_sdmmcdev) /
sizeof(struct sam_dev_s), lock);
/* FIXME: Implement the below function to support bus share:
*
* sam_muxbus_sdio_lock((dev - g_sdmmcdev) /
* sizeof(struct sam_dev_s), lock);
*/
return OK;
}
#endif

View File

@ -1580,7 +1580,11 @@ static int stm32_lock(struct sdio_dev_s *dev, bool lock)
* bus is part of board support package.
*/
stm32_muxbus_sdio_lock(lock);
/* FIXME: Implement the below function to support bus share:
*
* stm32_muxbus_sdio_lock(lock);
*/
return OK;
}
#endif

View File

@ -1832,7 +1832,11 @@ static int stm32_lock(struct sdio_dev_s *dev, bool lock)
{
/* The multiplex bus is part of board support package. */
stm32_muxbus_sdio_lock(dev, lock);
/* FIXME: Implement the below function to support bus share:
*
* stm32_muxbus_sdio_lock(dev, lock);
*/
return OK;
}
#endif

View File

@ -1872,7 +1872,11 @@ static int stm32_lock(struct sdio_dev_s *dev, bool lock)
{
/* The multiplex bus is part of board support package. */
stm32_muxbus_sdio_lock(dev, lock);
/* FIXME: Implement the below function to support bus share:
*
* stm32_muxbus_sdio_lock(dev, lock);
*/
return OK;
}
#endif

View File

@ -1632,7 +1632,11 @@ static int stm32_lock(struct sdio_dev_s *dev, bool lock)
{
/* The multiplex bus is part of board support package. */
stm32_muxbus_sdio_lock(dev, lock);
/* FIXME: Implement the below function to support bus share:
*
* stm32_muxbus_sdio_lock(dev, lock);
*/
return OK;
}
#endif

View File

@ -1180,7 +1180,10 @@ static int mpfs_lock(struct sdio_dev_s *dev, bool lock)
{
/* The multiplex bus is part of board support package. */
mpfs_muxbus_sdio_lock(dev, lock);
/* FIXME: Implement the below function to support bus share:
*
* mpfs_muxbus_sdio_lock(dev, lock);
*/
return OK;
}