Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d23515ea authored by Sami Tolvanen's avatar Sami Tolvanen
Browse files

ANDROID: staging: lustre: fix filler function type



Bug: 67506682
Change-Id: I3a65178adb47119a3dcbc6ca4bcf350085a73ffc
Signed-off-by: default avatarSami Tolvanen <samitolvanen@google.com>
parent 3faaae7b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1121,9 +1121,9 @@ struct readpage_param {
 * in PAGE_SIZE (if PAGE_SIZE greater than LU_PAGE_SIZE), and the
 * lu_dirpage for this integrated page will be adjusted.
 **/
static int mdc_read_page_remote(void *data, struct page *page0)
static int mdc_read_page_remote(struct file *data, struct page *page0)
{
	struct readpage_param *rp = data;
	struct readpage_param *rp = (struct readpage_param *)data;
	struct page **page_pool;
	struct page *page;
	struct lu_dirpage *dp;