bcm43xxx: fixed several warnings:
warning: ISO C forbids 'return' with expression, in function returning void [-Wpedantic] warning: format '%x' expects argument of type 'unsigned int', but argument 4 has type 'uint8_t * {aka unsigned char *}' [-Wformat=] warning: too many arguments for format [-Wformat-extra-args]
This commit is contained in:
parent
5669ac8e43
commit
a597e66070
@ -351,7 +351,7 @@ int bcmf_driver_download_clm(FAR struct bcmf_dev_s *priv)
|
||||
}
|
||||
else
|
||||
{
|
||||
wlinfo("Download %d bytes @ 0x%08x\n", datalen, srcbuff);
|
||||
wlinfo("Download %d bytes @ %p\n", datalen, srcbuff);
|
||||
}
|
||||
|
||||
/* Divide CLM blob into chunks */
|
||||
|
@ -278,7 +278,7 @@ int bcmf_probe(FAR struct bcmf_sdio_dev_s *sbus)
|
||||
}
|
||||
else
|
||||
{
|
||||
wlwarn("High-Speed mode is not supported by the chip!\n", value);
|
||||
wlwarn("High-Speed mode is not supported by the chip!\n");
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -524,7 +524,7 @@ struct bcmf_frame_s *bcmf_sdpcm_alloc_frame(FAR struct bcmf_dev_s *priv,
|
||||
void bcmf_sdpcm_free_frame(FAR struct bcmf_dev_s *priv,
|
||||
struct bcmf_frame_s *frame)
|
||||
{
|
||||
return bcmf_sdio_free_frame(priv, (struct bcmf_sdio_frame *)frame);
|
||||
bcmf_sdio_free_frame(priv, (struct bcmf_sdio_frame *)frame);
|
||||
}
|
||||
|
||||
struct bcmf_frame_s *bcmf_sdpcm_get_rx_frame(FAR struct bcmf_dev_s *priv)
|
||||
|
Loading…
Reference in New Issue
Block a user