swiotlb: remove a useless return in swiotlb_init

Both swiotlb_init_remap() and swiotlb_init() have return type void.

Signed-off-by: Dongli Zhang <dongli.zhang@oracle.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
Dongli Zhang 2022-06-11 01:25:12 -07:00 committed by Christoph Hellwig
parent 1a3c7d0841
commit 466298c656

View File

@ -282,7 +282,7 @@ retry:
void __init swiotlb_init(bool addressing_limit, unsigned int flags)
{
return swiotlb_init_remap(addressing_limit, flags, NULL);
swiotlb_init_remap(addressing_limit, flags, NULL);
}
/*