commit | abfd6fe0cd535d31ee83b668be6eb59ce6a8469d | [log] [tgz] |
---|---|---|
author | Will Deacon <will@kernel.org> | Tue Jul 02 16:44:41 2019 +0100 |
committer | Will Deacon <will@kernel.org> | Mon Jul 29 17:22:57 2019 +0100 |
tree | 3434e458e2191d71cb8d6211209044d8e3560bcd | |
parent | 10b7a7d912697afd681a0bcfced9e05543aded35 [diff] |
iommu/io-pgtable: Replace ->tlb_add_flush() with ->tlb_add_page() The ->tlb_add_flush() callback in the io-pgtable API now looks a bit silly: - It takes a size and a granule, which are always the same - It takes a 'bool leaf', which is always true - It only ever flushes a single page With that in mind, replace it with an optional ->tlb_add_page() callback that drops the useless parameters. Signed-off-by: Will Deacon <will@kernel.org>