ANDROID: staging: lustre: fix filler function type

Bug: 67506682
Change-Id: I3a65178adb47119a3dcbc6ca4bcf350085a73ffc
Signed-off-by: Sami Tolvanen <samitolvanen@google.com>
This commit is contained in:
Sami Tolvanen
2018-03-02 13:05:33 -08:00
parent 2be0847f6f
commit a36719dd88

View File

@@ -1219,9 +1219,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;