summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRobby Cai <robby.cai@nxp.com>2017-02-13 18:01:25 +0800
committerAnson Huang <Anson.Huang@nxp.com>2017-06-08 20:59:55 +0800
commite238fb8c068b6cfafbfed1ec5d57c00125c530a0 (patch)
treef88f9787e1a0a71cd5536d91aef27efbffc88edd /include
parent59f17c07edb63a6c5eeca0668308638a702d8512 (diff)
MLK-13917 pxp: fix build error for pxp library in user space
Fix following build error by changing type to '__u64'. include/uapi/linux/pxp_dma.h:230:2: error: unknown type name 'u64' u64 lut_sels; ^~~ Signed-off-by: Robby Cai <robby.cai@nxp.com>
Diffstat (limited to 'include')
-rw-r--r--include/uapi/linux/pxp_dma.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/uapi/linux/pxp_dma.h b/include/uapi/linux/pxp_dma.h
index 948b9ee84ecd..d5d4c58cf2b6 100644
--- a/include/uapi/linux/pxp_dma.h
+++ b/include/uapi/linux/pxp_dma.h
@@ -1,5 +1,6 @@
/*
* Copyright (C) 2013-2015 Freescale Semiconductor, Inc. All Rights Reserved.
+ * Copyright 2017 NXP
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -227,7 +228,7 @@ struct pxp_proc_data {
bool combine_enable;
/* LUT cleanup */
- u64 lut_sels;
+ __u64 lut_sels;
/* the mode pxp's working against */
enum pxp_working_mode working_mode;