mirror of https://github.com/hak5/openwrt.git
55 lines
1.5 KiB
Diff
55 lines
1.5 KiB
Diff
From abd6565704cadc8d0968b6fede8d445f84c870d3 Mon Sep 17 00:00:00 2001
|
|
From: Holger Freyther <zecke@openmoko.org>
|
|
Date: Wed, 2 Jul 2008 22:44:41 +0100
|
|
Subject: [PATCH] From 683ef8067815f6ba0ede73fa71973823726213a3 Mon Sep 17 00:00:00 2001
|
|
Subject: [PATCH] [janitor] Make checkpatch happy on the header files
|
|
|
|
---
|
|
include/linux/pcf50606.h | 2 +-
|
|
include/linux/pcf50633.h | 2 +-
|
|
include/linux/pcf506xx.h | 2 +-
|
|
3 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/include/linux/pcf50606.h b/include/linux/pcf50606.h
|
|
index 167328f..b17d35b 100644
|
|
--- a/include/linux/pcf50606.h
|
|
+++ b/include/linux/pcf50606.h
|
|
@@ -85,7 +85,7 @@ struct pcf50606_platform_data {
|
|
struct {
|
|
u_int8_t mbcc3; /* charger voltage / current */
|
|
} charger;
|
|
- pmu_cb *cb;
|
|
+ pmu_cb cb;
|
|
};
|
|
|
|
#endif
|
|
diff --git a/include/linux/pcf50633.h b/include/linux/pcf50633.h
|
|
index 4653285..b4d65dc 100644
|
|
--- a/include/linux/pcf50633.h
|
|
+++ b/include/linux/pcf50633.h
|
|
@@ -176,7 +176,7 @@ struct pcf50633_platform_data {
|
|
struct {
|
|
u_int8_t mbcc3; /* charger voltage / current */
|
|
} charger;
|
|
- pmu_cb *cb;
|
|
+ pmu_cb cb;
|
|
|
|
/* post-resume backlight bringup */
|
|
int defer_resume_backlight;
|
|
diff --git a/include/linux/pcf506xx.h b/include/linux/pcf506xx.h
|
|
index 9069bd4..a1365e0 100644
|
|
--- a/include/linux/pcf506xx.h
|
|
+++ b/include/linux/pcf506xx.h
|
|
@@ -26,7 +26,7 @@ enum pmu_event {
|
|
__NUM_PMU_EVTS
|
|
};
|
|
|
|
-typedef int pmu_cb(struct device *dev, unsigned int feature,
|
|
+typedef int (*pmu_cb)(struct device *dev, unsigned int feature,
|
|
enum pmu_event event);
|
|
|
|
|
|
--
|
|
1.5.6.5
|
|
|