forked from pool/mmc-utils
4190e7c00c
+ Fit usage to 80 cols + fix building errors on Android + mmc-utils: add check for max enhanced user area + mmc-utils: add support to create gp partition + mmc-utils: Add command to set the boot bus conditions + mmc-utils: add ability to enable/disable optional eMMC cache + mmc_utils: gp create: only allow partition [1-4] to be selected + mmc_utils: doc: add man-page + mmc-utils: Merge the lsmmc tool into mmc-utils + mmc_utils: add ffu support OBS-URL: https://build.opensuse.org/package/show/hardware/mmc-utils?expand=0&rev=9
25 lines
707 B
Diff
25 lines
707 B
Diff
From: Michel Normand <normand@linux.vnet.ibm.com>
|
|
Subject: do not use asm generic
|
|
Date: Wed, 17 Feb 2016 18:44:43 +0100
|
|
|
|
do not use <asm_generic/int-ll64.h> to avoid build error on PowerPC arch
|
|
|
|
Signed-off-by: Michel Normand <normand@linux.vnet.ibm.com>
|
|
---
|
|
mmc.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
Index: mmc-utils-0.1~git.20160308/mmc.h
|
|
===================================================================
|
|
--- mmc-utils-0.1~git.20160308.orig/mmc.h
|
|
+++ mmc-utils-0.1~git.20160308/mmc.h
|
|
@@ -17,7 +17,7 @@
|
|
* those modifications are Copyright (c) 2016 SanDisk Corp.
|
|
*/
|
|
|
|
-#include <asm-generic/int-ll64.h>
|
|
+#include <asm/types.h>
|
|
#include <linux/mmc/ioctl.h>
|
|
#include <stdio.h>
|
|
|