MLK-13917 pxp: fix build error for pxp library in user space
authorRobby Cai <robby.cai@nxp.com>
Mon, 13 Feb 2017 10:01:25 +0000 (18:01 +0800)
committerNitin Garg <nitin.garg@nxp.com>
Mon, 19 Mar 2018 20:10:41 +0000 (15:10 -0500)
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>
include/uapi/linux/pxp_dma.h

index 948b9ee..d5d4c58 100644 (file)
@@ -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;