They were never used in the kernel, not sure why they got merged into
the kernel though. Get rid of them.
Signed-off-by: Viresh Kumar <viresh.kumar(a)linaro.org>
---
Documentation/power/pm_qos_interface.txt | 13 +--------
drivers/base/power/qos.c | 50 +++-----------------------------
include/linux/pm_qos.h | 8 -----
3 files changed, 5 insertions(+), 66 deletions(-)
diff --git a/Documentation/power/pm_qos_interface.txt b/Documentation/power/pm_qos_interface.txt
index 129f7c0e1483..21d2d48f87a2 100644
--- a/Documentation/power/pm_qos_interface.txt
+++ b/Documentation/power/pm_qos_interface.txt
@@ -163,8 +163,7 @@ of flags and remove sysfs attributes pm_qos_no_power_off and pm_qos_remote_wakeu
under the device's power directory.
Notification mechanisms:
-The per-device PM QoS framework has 2 different and distinct notification trees:
-a per-device notification tree and a global notification tree.
+The per-device PM QoS framework has a per-device notification tree.
int dev_pm_qos_add_notifier(device, notifier):
Adds a notification callback function for the device.
@@ -174,16 +173,6 @@ is changed (for resume latency device PM QoS only).
int dev_pm_qos_remove_notifier(device, notifier):
Removes the notification callback function for the device.
-int dev_pm_qos_add_global_notifier(notifier):
-Adds a notification callback function in the global notification tree of the
-framework.
-The callback is called when the aggregated value for any device is changed
-(for resume latency device PM QoS only).
-
-int dev_pm_qos_remove_global_notifier(notifier):
-Removes the notification callback function from the global notification tree
-of the framework.
-
Active state latency tolerance
diff --git a/drivers/base/power/qos.c b/drivers/base/power/qos.c
index d888d9869b6a..271bec73185e 100644
--- a/drivers/base/power/qos.c
+++ b/drivers/base/power/qos.c
@@ -17,12 +17,9 @@
*
* This QoS design is best effort based. Dependents register their QoS needs.
* Watchers register to keep track of the current QoS needs of the system.
- * Watchers can register different types of notification callbacks:
- * . a per-device notification callback using the dev_pm_qos_*_notifier API.
- * The notification chain data is stored in the per-device constraint
- * data struct.
- * . a system-wide notification callback using the dev_pm_qos_*_global_notifier
- * API. The notification chain data is stored in a static variable.
+ * Watchers can register a per-device notification callback using the
+ * dev_pm_qos_*_notifier API. The notification chain data is stored in the
+ * per-device constraint data struct.
*
* Note about the per-device constraint data struct allocation:
* . The per-device constraints data struct ptr is tored into the device
@@ -49,8 +46,6 @@
static DEFINE_MUTEX(dev_pm_qos_mtx);
static DEFINE_MUTEX(dev_pm_qos_sysfs_mtx);
-static BLOCKING_NOTIFIER_HEAD(dev_pm_notifiers);
-
/**
* __dev_pm_qos_flags - Check PM QoS flags for a given device.
* @dev: Device to check the PM QoS flags for.
@@ -135,8 +130,7 @@ s32 dev_pm_qos_read_value(struct device *dev)
* @value: Value to assign to the QoS request.
*
* Internal function to update the constraints list using the PM QoS core
- * code and if needed call the per-device and the global notification
- * callbacks
+ * code and if needed call the per-device callbacks.
*/
static int apply_constraint(struct dev_pm_qos_request *req,
enum pm_qos_req_action action, s32 value)
@@ -148,12 +142,6 @@ static int apply_constraint(struct dev_pm_qos_request *req,
case DEV_PM_QOS_RESUME_LATENCY:
ret = pm_qos_update_target(&qos->resume_latency,
&req->data.pnode, action, value);
- if (ret) {
- value = pm_qos_read_value(&qos->resume_latency);
- blocking_notifier_call_chain(&dev_pm_notifiers,
- (unsigned long)value,
- req);
- }
break;
case DEV_PM_QOS_LATENCY_TOLERANCE:
ret = pm_qos_update_target(&qos->latency_tolerance,
@@ -536,36 +524,6 @@ int dev_pm_qos_remove_notifier(struct device *dev,
EXPORT_SYMBOL_GPL(dev_pm_qos_remove_notifier);
/**
- * dev_pm_qos_add_global_notifier - sets notification entry for changes to
- * target value of the PM QoS constraints for any device
- *
- * @notifier: notifier block managed by caller.
- *
- * Will register the notifier into a notification chain that gets called
- * upon changes to the target value for any device.
- */
-int dev_pm_qos_add_global_notifier(struct notifier_block *notifier)
-{
- return blocking_notifier_chain_register(&dev_pm_notifiers, notifier);
-}
-EXPORT_SYMBOL_GPL(dev_pm_qos_add_global_notifier);
-
-/**
- * dev_pm_qos_remove_global_notifier - deletes notification for changes to
- * target value of PM QoS constraints for any device
- *
- * @notifier: notifier block to be removed.
- *
- * Will remove the notifier from the notification chain that gets called
- * upon changes to the target value for any device.
- */
-int dev_pm_qos_remove_global_notifier(struct notifier_block *notifier)
-{
- return blocking_notifier_chain_unregister(&dev_pm_notifiers, notifier);
-}
-EXPORT_SYMBOL_GPL(dev_pm_qos_remove_global_notifier);
-
-/**
* dev_pm_qos_add_ancestor_request - Add PM QoS request for device's ancestor.
* @dev: Device whose ancestor to add the request for.
* @req: Pointer to the preallocated handle.
diff --git a/include/linux/pm_qos.h b/include/linux/pm_qos.h
index d4d34791e463..3e2547d6e207 100644
--- a/include/linux/pm_qos.h
+++ b/include/linux/pm_qos.h
@@ -146,8 +146,6 @@ int dev_pm_qos_add_notifier(struct device *dev,
struct notifier_block *notifier);
int dev_pm_qos_remove_notifier(struct device *dev,
struct notifier_block *notifier);
-int dev_pm_qos_add_global_notifier(struct notifier_block *notifier);
-int dev_pm_qos_remove_global_notifier(struct notifier_block *notifier);
void dev_pm_qos_constraints_init(struct device *dev);
void dev_pm_qos_constraints_destroy(struct device *dev);
int dev_pm_qos_add_ancestor_request(struct device *dev,
@@ -199,12 +197,6 @@ static inline int dev_pm_qos_add_notifier(struct device *dev,
static inline int dev_pm_qos_remove_notifier(struct device *dev,
struct notifier_block *notifier)
{ return 0; }
-static inline int dev_pm_qos_add_global_notifier(
- struct notifier_block *notifier)
- { return 0; }
-static inline int dev_pm_qos_remove_global_notifier(
- struct notifier_block *notifier)
- { return 0; }
static inline void dev_pm_qos_constraints_init(struct device *dev)
{
dev->power.power_state = PMSG_ON;
--
2.7.1.410.g6faf27b
Hi,
This series contains minor fixes/cleanups for thermal cooling drivers.
V2->V3:
- Added Acks from Rui
- Resending as it was getting ignored until now :(
V1->V2:
- s/dev_warn/dev_err (Rafael)
- Two new patches to make similar (^^) change at other places
Viresh Kumar (5):
thermal: devfreq: Simplify expression
thermal: devfreq_cooling: Replace dev_warn with dev_err
thermal: devfreq: Check OPP for errors
thermal: cpu_cooling: Replace dev_warn with dev_err
thermal: cpu_cooling: Check OPP for errors
drivers/thermal/cpu_cooling.c | 19 +++++++++++++------
drivers/thermal/devfreq_cooling.c | 14 ++++++++++----
2 files changed, 23 insertions(+), 10 deletions(-)
--
2.7.1.410.g6faf27b
version 2:
- Do not automatically set parent_trigger attribute on all triggers.
Let driver decide to use it.
- Improve documentation of parent_trigger
- Improve slave modes documentation
Thoses patches add parent_trigger attribute to IIO triggers.
Parent trigger edges or levels could be used to control current
trigger for example to start, stop or reset it.
Similary to what already exist to validate a device, a new (optional)
validate_trigger function is added in iio_trigger structure and should be
filled by drivers.
For STM32 triggers parent trigger edges or levels could used in various ways.
To be able to select them "slave_mode" attribute is added to STM32 triggers.
For example the combinaison of parent_trigger and slave_mode allows to start
a trigger only when parent trigger level is high or to reset it on parent
trigger rising edge.
Benjamin Gaignard (2):
iio: Allow triggers to be used as parent of others triggers
iio: stm32 trigger: Implement parent trigger feature
.../ABI/testing/sysfs-bus-iio-timer-stm32 | 43 +++++++++
.../ABI/testing/sysfs-bus-iio-trigger-sysfs | 10 ++
drivers/iio/industrialio-trigger.c | 68 +++++++++++++
drivers/iio/trigger/stm32-timer-trigger.c | 105 +++++++++++++++++++++
include/linux/iio/trigger.h | 7 +-
5 files changed, 232 insertions(+), 1 deletion(-)
--
1.9.1
Tree/Branch: v3.18.48-rt54
Git describe: v3.18.48-rt54
Commit: 7da5438755 Linux 3.18.48-rt54
Build Time: 68 min 38 sec
Passed: 9 / 9 (100.00 %)
Failed: 0 / 9 ( 0.00 %)
Errors: 0
Warnings: 35
Section Mismatches: 0
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
13 warnings 0 mismatches : arm64-allmodconfig
4 warnings 0 mismatches : arm-multi_v5_defconfig
7 warnings 0 mismatches : arm-multi_v7_defconfig
4 warnings 0 mismatches : x86_64-defconfig
30 warnings 0 mismatches : arm-allmodconfig
2 warnings 0 mismatches : arm64-defconfig
-------------------------------------------------------------------------------
Warnings Summary: 35
6 ../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
6 ../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
6 ../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
5 ../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
3 ../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined, evaluates to 0 [-Wundef]
2 ../include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
2 ../fs/nfs/nfs4proc.c:3062:10: warning: switch condition has boolean value [-Wswitch-bool]
2 ../drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
2 ../drivers/net/ethernet/dec/tulip/winbond-840.c:910:2: warning: #warning Processor architecture undefined [-Wcpp]
1 ../include/uapi/linux/swab.h:13:15: warning: integer overflow in expression [-Woverflow]
1 ../include/linux/spinlock.h:253:3: warning: 'flags' may be used uninitialized in this function [-Wmaybe-uninitialized]
1 ../include/linux/kernel.h:708:17: warning: comparison of distinct pointer types lacks a cast
1 ../fs/btrfs/extent_io.c:2166:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/usb/gadget/function/f_ncm.c:203:0: warning: "NCAPS" redefined
1 ../drivers/thermal/x86_pkg_temp_thermal.c:414:1: warning: no return statement in function returning non-void [-Wreturn-type]
1 ../drivers/staging/vt6655/device_main.c:2997:1: warning: the frame size of 1312 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 ../drivers/staging/bcm/CmHost.c:1564:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/staging/bcm/CmHost.c:1546:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/staging/bcm/CmHost.c:1503:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/pci/host/pcie-xilinx.c:154:22: warning: format '%d' expects argument of type 'int', but argument 4 has type 'long unsigned int' [-Wformat=]
1 ../drivers/net/wireless/brcm80211/brcmfmac/fwsignal.c:1478:8: warning: 'skb' may be used uninitialized in this function [-Wmaybe-uninitialized]
1 ../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:467:46: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:307:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 ../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:303:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 ../drivers/net/ethernet/dec/tulip/tulip_core.c:101:2: warning: #warning Processor architecture undefined! [-Wcpp]
1 ../drivers/mtd/chips/cfi_cmdset_0020.c:651:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 ../drivers/iommu/intel-iommu.c:1749:25: warning: unused variable 'drhd' [-Wunused-variable]
1 ../drivers/infiniband/ulp/iser/iser_verbs.c:1206:14: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/infiniband/ulp/iser/iser_verbs.c:1201:14: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/infiniband/ulp/iser/iser_verbs.c:1175:31: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/infiniband/ulp/iser/iser_verbs.c:1174:33: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/infiniband/hw/qib/qib_qp.c:44:0: warning: "BITS_PER_PAGE" redefined
1 ../drivers/block/drbd/drbd_bitmap.c:483:0: warning: "BITS_PER_PAGE_MASK" redefined
1 ../drivers/block/drbd/drbd_bitmap.c:482:0: warning: "BITS_PER_PAGE" redefined
1 ../arch/arm/mach-cns3xxx/pcie.c:313:1: warning: the frame size of 1080 bytes is larger than 1024 bytes [-Wframe-larger-than=]
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm64-allmodconfig : PASS, 0 errors, 13 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined, evaluates to 0 [-Wundef]
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined, evaluates to 0 [-Wundef]
../drivers/block/drbd/drbd_bitmap.c:482:0: warning: "BITS_PER_PAGE" redefined
../drivers/block/drbd/drbd_bitmap.c:483:0: warning: "BITS_PER_PAGE_MASK" redefined
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../drivers/infiniband/hw/qib/qib_qp.c:44:0: warning: "BITS_PER_PAGE" redefined
../drivers/net/ethernet/dec/tulip/winbond-840.c:910:2: warning: #warning Processor architecture undefined [-Wcpp]
../drivers/net/ethernet/dec/tulip/tulip_core.c:101:2: warning: #warning Processor architecture undefined! [-Wcpp]
../drivers/staging/bcm/CmHost.c:1503:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/staging/bcm/CmHost.c:1546:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/staging/bcm/CmHost.c:1564:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/usb/gadget/function/f_ncm.c:203:0: warning: "NCAPS" redefined
../drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
-------------------------------------------------------------------------------
arm-multi_v5_defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 7 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../fs/nfs/nfs4proc.c:3062:10: warning: switch condition has boolean value [-Wswitch-bool]
../drivers/net/wireless/brcm80211/brcmfmac/fwsignal.c:1478:8: warning: 'skb' may be used uninitialized in this function [-Wmaybe-uninitialized]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../include/linux/spinlock.h:253:3: warning: 'flags' may be used uninitialized in this function [-Wmaybe-uninitialized]
-------------------------------------------------------------------------------
x86_64-defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../drivers/iommu/intel-iommu.c:1749:25: warning: unused variable 'drhd' [-Wunused-variable]
../drivers/thermal/x86_pkg_temp_thermal.c:414:1: warning: no return statement in function returning non-void [-Wreturn-type]
-------------------------------------------------------------------------------
arm-allmodconfig : PASS, 0 errors, 30 warnings, 0 section mismatches
Warnings:
../arch/arm/mach-cns3xxx/pcie.c:313:1: warning: the frame size of 1080 bytes is larger than 1024 bytes [-Wframe-larger-than=]
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../fs/btrfs/extent_io.c:2166:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../fs/nfs/nfs4proc.c:3062:10: warning: switch condition has boolean value [-Wswitch-bool]
../drivers/infiniband/ulp/iser/iser_verbs.c:1174:33: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/infiniband/ulp/iser/iser_verbs.c:1175:31: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/infiniband/ulp/iser/iser_verbs.c:1201:14: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/infiniband/ulp/iser/iser_verbs.c:1206:14: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../include/linux/kernel.h:708:17: warning: comparison of distinct pointer types lacks a cast
../drivers/mtd/chips/cfi_cmdset_0020.c:651:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=]
../include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
../include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
../drivers/pci/host/pcie-xilinx.c:154:22: warning: format '%d' expects argument of type 'int', but argument 4 has type 'long unsigned int' [-Wformat=]
../drivers/net/ethernet/dec/tulip/winbond-840.c:910:2: warning: #warning Processor architecture undefined [-Wcpp]
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:303:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:307:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:467:46: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../drivers/staging/vt6655/device_main.c:2997:1: warning: the frame size of 1312 bytes is larger than 1024 bytes [-Wframe-larger-than=]
../include/uapi/linux/swab.h:13:15: warning: integer overflow in expression [-Woverflow]
-------------------------------------------------------------------------------
arm64-defconfig : PASS, 0 errors, 2 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined, evaluates to 0 [-Wundef]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
x86_64-allnoconfig
arm64-allnoconfig
arm-allnoconfig
close failed in file object destructor:
sys.excepthook is missing
lost sys.stderr
Tree/Branch: v3.12.70-rt95
Git describe: v3.12.70-rt95
Commit: 191a416169 Linux 3.12.70-rt95
Build Time: 52 min 8 sec
Passed: 7 / 8 ( 87.50 %)
Failed: 1 / 8 ( 12.50 %)
Errors: 9
Warnings: 187
Section Mismatches: 0
Failed defconfigs:
arm64-allmodconfig
Errors:
arm64-allmodconfig
/home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl330_ids_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__nmk_i2c_ids_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__amba_kmi_idtable_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__mmci_ids_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl030_ids_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl031_ids_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl022_ids_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl010_ids_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl011_ids_device_table' isn't known
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
5 warnings 0 mismatches : arm64-allnoconfig
153 warnings 0 mismatches : arm64-allmodconfig
2 warnings 0 mismatches : arm-multi_v7_defconfig
2 warnings 0 mismatches : x86_64-defconfig
38 warnings 0 mismatches : arm-allmodconfig
1 warnings 0 mismatches : arm-allnoconfig
1 warnings 0 mismatches : x86_64-allnoconfig
15 warnings 0 mismatches : arm64-defconfig
-------------------------------------------------------------------------------
Errors summary: 9
1 /home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl330_ids_device_table' isn't known
1 /home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl031_ids_device_table' isn't known
1 /home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl030_ids_device_table' isn't known
1 /home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl022_ids_device_table' isn't known
1 /home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl011_ids_device_table' isn't known
1 /home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl010_ids_device_table' isn't known
1 /home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__nmk_i2c_ids_device_table' isn't known
1 /home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__mmci_ids_device_table' isn't known
1 /home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__amba_kmi_idtable_device_table' isn't known
Warnings Summary: 187
8 /home/broonie/build/linux-stable-rt/mm/slub.c:1310:6: warning: unused variable 'idx' [-Wunused-variable]
3 /home/broonie/build/linux-stable-rt/mm/swap.c:50:30: warning: 'swapvec_lock' defined but not used [-Wunused-const-variable=]
3 /home/broonie/build/linux-stable-rt/mm/swap.c:49:30: warning: 'rotate_lock' defined but not used [-Wunused-const-variable=]
3 /home/broonie/build/linux-stable-rt/lib/radix-tree.c:97:30: warning: 'radix_tree_preloads_lock' defined but not used [-Wunused-const-variable=]
3 /home/broonie/build/linux-stable-rt/kernel/workqueue.c:333:30: warning: 'pendingb_lock' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/packet/af_packet.c:3662:4: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
2 /home/broonie/build/linux-stable-rt/net/ipv4/tcp_ipv4.c:576:30: warning: 'tcp_sk_lock' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/ipv4/ping.c:1144:36: warning: 'ping_v4_seq_ops' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/ipv4/icmp.c:208:30: warning: 'icmp_sk_lock' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/core/skbuff.c:358:30: warning: 'netdev_alloc_lock' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/core/net-sysfs.c:30:19: warning: 'fmt_long_hex' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/kernel/cpu.c:468:13: warning: 'cpu_notify_nofail' defined but not used [-Wunused-function]
2 /home/broonie/build/linux-stable-rt/kernel/cgroup.c:1276:5: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses]
2 /home/broonie/build/linux-stable-rt/include/linux/compiler-gcc.h:136:2: warning: large integer implicitly truncated to unsigned type [-Woverflow]
2 /home/broonie/build/linux-stable-rt/fs/nfs/nfs4proc.c:2925:10: warning: switch condition has boolean value [-Wswitch-bool]
2 /home/broonie/build/linux-stable-rt/drivers/staging/rtl8188eu/os_dep/ioctl_linux.c:941:59: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]
2 /home/broonie/build/linux-stable-rt/drivers/staging/rtl8188eu/os_dep/ioctl_linux.c:4052:42: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]
2 /home/broonie/build/linux-stable-rt/drivers/staging/rtl8188eu/os_dep/ioctl_linux.c:4043:54: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]
2 /home/broonie/build/linux-stable-rt/drivers/staging/rtl8188eu/os_dep/ioctl_linux.c:2629:62: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]
2 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/smsc/smc91x.c:1899:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:526:38: warning: 'wm8991_dapm_rxvoice_controls' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:126:27: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:106:27: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:527:38: warning: 'wm8990_dapm_rxvoice_controls' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:126:35: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:118:35: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8988.c:273:30: warning: 'wm8988_rline_enum' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8974.c:202:38: warning: 'wm8974_mic_boost_controls' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8974.c:198:38: warning: 'wm8974_aux_boost_controls' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8900.c:451:38: warning: 'wm8900_dapm_routput2_control' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8900.c:448:38: warning: 'wm8900_dapm_loutput2_control' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8737.c:116:30: warning: 'high_3d' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/tlv320aic23.c:56:30: warning: 'tlv320aic23_rec_src' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/ml26124.c:71:35: warning: 'ngth' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:876:30: warning: 'max98090_pa2en_enum' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:872:30: warning: 'max98090_pa1en_enum' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:389:35: warning: 'max98090_alc_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:387:35: warning: 'max98090_sidetone_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/cs42l73.c:383:38: warning: 'xsp_output_mux' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/cs42l73.c:380:38: warning: 'vsp_output_mux' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/pci/ac97/ac97_codec.c:613:38: warning: 'snd_ac97_controls_master_mono' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/wireless/nl80211.c:393:1: warning: 'nl80211_wowlan_tcp_policy' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/wireless/nl80211.c:380:1: warning: 'nl80211_wowlan_policy' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/sunrpc/xprtrdma/verbs.c:1774:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/net/sched/sch_choke.c:589:37: warning: 'choke_class_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/netfilter/xt_recent.c:103:37: warning: 'recent_old_fops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/mac80211/debugfs_sta.c:35:37: warning: 'sta_aid_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/mac80211/debugfs.c:70:23: warning: 'rate_ctrl_alg_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/ipv4/arp.c:152:31: warning: 'arp_broken_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/dcb/dcbnl.c:183:32: warning: 'dcbnl_ieee_app' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/kernel/modsign_pubkey.c:28:31: warning: 'annoy_ccache' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/fs/ncpfs/dir.c:860:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/fs/fscache/object.c:34:25: warning: 'fscache_osm_CREATE_OBJECT' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/fs/cifs/netmisc.c:133:40: warning: 'mapping_table_ERRHRD' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/fs/cifs/cifsacl.c:43:30: warning: 'sid_user' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/fs/afs/cmservice.c:78:35: warning: 'afs_SRXCBProbeUuid' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/xen-fbfront.c:588:57: warning: format '%lu' expects argument of type 'long unsigned int', but argument 5 has type 'long long unsigned int' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/video/omap2/displays-new/panel-sony-acx565akm.c:608:25: warning: unused variable 'ddata' [-Wunused-variable]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/s6e63m0.c:331:29: warning: 'seq_elvss_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/s6e63m0.c:317:29: warning: 'seq_acl_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/lms501kf03.c:96:28: warning: 'seq_up_dn' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/lms501kf03.c:100:28: warning: 'seq_sleep_in' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:92:29: warning: 'seq_swreset' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:414:29: warning: 'seq_el_on' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:402:29: warning: 'seq_els_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:390:29: warning: 'seq_gls_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:378:29: warning: 'seq_sd_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:366:29: warning: 'seq_gam_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:356:29: warning: 'seq_vbl_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:346:29: warning: 'seq_vbh_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:334:29: warning: 'seq_vint_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:324:29: warning: 'seq_vmos_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:314:29: warning: 'seq_vgl_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:304:29: warning: 'seq_vgh_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:294:29: warning: 'seq_vreg1_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:284:29: warning: 'seq_vl3_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:274:29: warning: 'seq_vci1_2nd_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:264:29: warning: 'seq_vl2_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:254:29: warning: 'seq_vl1_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:244:29: warning: 'seq_vci1_1st_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:212:29: warning: 'seq_pwr_ctrl' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:187:29: warning: 'seq_apon' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/aty/radeon_pm.c:1718:13: warning: 'radeon_reinitialize_M10' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/usb/storage/realtek_cr.c:699:13: warning: 'fw5895_init' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/usb/storage/realtek_cr.c:629:12: warning: 'config_autodelink_before_power_down' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/usb/serial/garmin_gps.c:205:28: warning: 'PRIVATE_REQ' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/usb/serial/garmin_gps.c:199:28: warning: 'GARMIN_STOP_PVT_REQ' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/usb/serial/garmin_gps.c:197:28: warning: 'GARMIN_START_PVT_REQ' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/usb/serial/garmin_gps.c:195:28: warning: 'GARMIN_APP_LAYER_REPLY' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/usb/gadget/nokia.c:45:19: warning: 'product_nokia' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/usb/gadget/mv_udc_core.c:62:19: warning: 'driver_desc' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/usb/gadget/mv_u3d_core.c:39:19: warning: 'driver_desc' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/usb/gadget/gmidi.c:47:19: warning: 'shortname' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/tty/serial/efm32-uart.c:834:20: warning: 'efm32_uart_exit' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/thermal/x86_pkg_temp_thermal.c:414:1: warning: no return statement in function returning non-void [-Wreturn-type]
1 /home/broonie/build/linux-stable-rt/drivers/staging/wlan-ng/prism2fw.c:795:1: warning: the frame size of 1072 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/vt6656/usbpipe.c:174:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/drivers/staging/vt6656/usbpipe.c:115:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/drivers/staging/vt6656/mib.c:385:4: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/drivers/staging/vt6656/main_usb.c:1210:7: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/drivers/staging/vt6656/iwctl.c:1825:25: warning: 'iwctl_private_handler' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/vt6656/bssdb.c:506:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/drivers/staging/vt6655/iwctl.c:758:1: warning: the frame size of 1280 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/vt6655/device_main.c:3257:1: warning: the frame size of 1864 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/sm7xxfb/sm7xxfb.c:117:19: warning: 'sm7xx_vga_setup' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/staging/rts5139/rts51x.c:204:13: warning: 'rts51x_try_to_enter_ss' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/staging/rtl8712/rtl871x_ioctl_linux.c:69:27: warning: 'iw_operation_mode' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/rtl8712/ieee80211.c:78:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.c:2190:42: warning: array subscript is above array bounds [-Warray-bounds]
1 /home/broonie/build/linux-stable-rt/drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.c:2188:45: warning: iteration 14 invokes undefined behavior [-Waggressive-loop-optimizations]
1 /home/broonie/build/linux-stable-rt/drivers/staging/frontier/tranzport.c:276:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/drivers/staging/dgnc/dgnc_tty.c:613:1: warning: the frame size of 1056 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/dgap/dgap_tty.c:664:1: warning: the frame size of 1056 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/dgap/dgap_fep5.c:173:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/dgap/dgap_fep5.c:112:1: warning: the frame size of 1040 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/dgap/dgap_driver.c:982:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/bcm/CmHost.c:1440:35: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 /home/broonie/build/linux-stable-rt/drivers/staging/bcm/CmHost.c:1426:37: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 /home/broonie/build/linux-stable-rt/drivers/staging/bcm/CmHost.c:1387:39: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 /home/broonie/build/linux-stable-rt/drivers/spi/spi-pl022.c:281:31: warning: large integer implicitly truncated to unsigned type [-Woverflow]
1 /home/broonie/build/linux-stable-rt/drivers/spi/spi-atmel.c:1461:19: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/spi/spi-atmel.c:1336:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:8517:5: warning: case value '257' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:8510:5: warning: case value '513' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:7901:5: warning: case value '257' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:7898:5: warning: case value '513' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
1 /home/broonie/build/linux-stable-rt/drivers/regulator/tps62360-regulator.c:363:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/regulator/pcap-regulator.c:93:27: warning: 'SW3_table' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/power/reset/xgene-reboot.c:80:17: warning: assignment from incompatible pointer type [-Wincompatible-pointer-types]
1 /home/broonie/build/linux-stable-rt/drivers/power/pm2301_charger.c:725:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/power/ab8500_charger.c:1559:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/power/ab8500_charger.c:1390:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/pinctrl/pinctrl-bcm2835.c:1060:2: warning: ignoring return value of 'gpiochip_remove', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/pinctrl/pinctrl-bcm2835.c:1043:3: warning: ignoring return value of 'gpiochip_remove', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ti/wlcore/spi.c:321:1: warning: the frame size of 9728 bytes is larger than 2048 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/rtlwifi/efuse.c:38:31: warning: 'RTL8712_SDIO_EFUSE_TABLE' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/rtlwifi/efuse.c:34:17: warning: 'MAX_PGPKT_SIZE' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/rtl818x/rtl8187/rtl8225.c:520:17: warning: 'rtl8225z2_tx_power_ofdm' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/libertas_tf/main.c:30:19: warning: 'lbtf_driver_version' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9298:18: warning: 'papd_cal_scalars_tbl_core1_rev3' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9231:18: warning: 'papd_comp_epsilon_tbl_core1_rev3' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9164:18: warning: 'papd_cal_scalars_tbl_core0_rev3' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9097:18: warning: 'papd_comp_epsilon_tbl_core0_rev3' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_lcn.c:1521:33: warning: 'dot11lcnphytbl_rx_gain_info_rev1' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c:483:19: warning: 'retry_limit' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmfmac/dhd_common.c:36:19: warning: 'brcmf_version' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/usb/usbnet.c:85:19: warning: 'driver_name' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/usb/r815x.c:197:33: warning: 'r8152_info' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/dec/tulip/winbond-840.c:911:2: warning: #warning Processor architecture undefined [-Wcpp]
1 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/amd/nmclan_cs.c:625:3: warning: 'pcmcia_request_exclusive_irq' is deprecated [-Wdeprecated-declarations]
1 /home/broonie/build/linux-stable-rt/drivers/mtd/nand/gpmi-nand/gpmi-nand.c:120:13: warning: 'set_geometry_by_ecc_info' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/mtd/chips/cfi_cmdset_0020.c:654:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/misc/bh1770glc.c:184:17: warning: 'prox_curr_ma' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/misc/apds990x.c:191:17: warning: 'ir_currents' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/mfd/tps65217.c:173:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/mfd/arizona-core.c:509:10: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/media/usb/usbvision/usbvision-core.c:94:18: warning: 'min_imgheight' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/media/usb/usbvision/usbvision-core.c:93:18: warning: 'min_imgwidth' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/media/usb/usbvision/usbvision-core.c:92:18: warning: 'max_imgheight' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/media/usb/usbvision/usbvision-core.c:91:18: warning: 'max_imgwidth' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/media/usb/gspca/ov519.c:375:37: warning: 'ovfx2_cif_mode' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/media/usb/gspca/ov519.c:363:37: warning: 'ovfx2_vga_mode' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/media/tuners/r820t.c:349:18: warning: 'r820t_mixer_gain_steps' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/media/tuners/r820t.c:345:18: warning: 'r820t_lna_gain_steps' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/media/radio/radio-shark2.c:240:13: warning: 'shark_resume_leds' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/media/radio/radio-shark.c:274:13: warning: 'shark_resume_leds' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/media/dvb-frontends/drxk_hard.c:2223:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/drivers/media/dvb-frontends/drxd_hard.c:2695:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/drivers/media/dvb-frontends/drxd_hard.c:2635:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/drivers/media/dvb-frontends/dib0090.c:852:18: warning: 'rf_ramp_pwm_sband' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/media/dvb-frontends/dib0090.c:800:18: warning: 'bb_ramp_pwm_boost' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/input/misc/xen-kbdfront.c:257:57: warning: format '%lu' expects argument of type 'long unsigned int', but argument 5 has type 'long long unsigned int' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/input/joystick/analog.c:171:2: warning: #warning Precise timer not defined for this architecture. [-Wcpp]
1 /home/broonie/build/linux-stable-rt/drivers/iio/adc/exynos_adc.c:112:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/iio/adc/ad7793.c:449:37: warning: 'ad7797_attribute_group' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/hwmon/nct6775.c:580:18: warning: 'NCT6106_REG_TOLERANCE_H' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/gpio/gpio-mcp23s08.c:643:10: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/dma/pl330.c:2317:21: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:1694:3: warning: format '%d' expects argument of type 'int', but argument 6 has type 'size_t {aka long unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:1694:3: warning: format '%d' expects argument of type 'int', but argument 5 has type 'size_t {aka long unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:1042:5: warning: format '%x' expects argument of type 'unsigned int', but argument 5 has type 'size_t {aka long unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:383:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
1 /home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:380:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
1 /home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:377:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
1 /home/broonie/build/linux-stable-rt/arch/arm/mach-cns3xxx/pcie.c:350:1: warning: the frame size of 1072 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/Documentation/misc-devices/mei/mei-amt-version.c:103:5: warning: 'acmd.fd' is used uninitialized in this function [-Wuninitialized]
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm64-allnoconfig : PASS, 0 errors, 5 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/mm/swap.c:50:30: warning: 'swapvec_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/swap.c:49:30: warning: 'rotate_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/kernel/workqueue.c:333:30: warning: 'pendingb_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/slub.c:1310:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/lib/radix-tree.c:97:30: warning: 'radix_tree_preloads_lock' defined but not used [-Wunused-const-variable=]
-------------------------------------------------------------------------------
arm64-allmodconfig : FAIL, 9 errors, 153 warnings, 0 section mismatches
Errors:
/home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl330_ids_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__nmk_i2c_ids_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__amba_kmi_idtable_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__mmci_ids_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl030_ids_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl031_ids_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl022_ids_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl010_ids_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl011_ids_device_table' isn't known
Warnings:
/home/broonie/build/linux-stable-rt/kernel/cpu.c:468:13: warning: 'cpu_notify_nofail' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/mm/swap.c:50:30: warning: 'swapvec_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/swap.c:49:30: warning: 'rotate_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/kernel/workqueue.c:333:30: warning: 'pendingb_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/slub.c:1310:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/fs/afs/cmservice.c:78:35: warning: 'afs_SRXCBProbeUuid' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/pci/ac97/ac97_codec.c:613:38: warning: 'snd_ac97_controls_master_mono' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/kernel/modsign_pubkey.c:28:31: warning: 'annoy_ccache' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/kernel/cgroup.c:1276:5: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses]
/home/broonie/build/linux-stable-rt/lib/radix-tree.c:97:30: warning: 'radix_tree_preloads_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/cs42l73.c:383:38: warning: 'xsp_output_mux' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/cs42l73.c:380:38: warning: 'vsp_output_mux' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:876:30: warning: 'max98090_pa2en_enum' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:872:30: warning: 'max98090_pa1en_enum' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:389:35: warning: 'max98090_alc_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:387:35: warning: 'max98090_sidetone_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/ml26124.c:71:35: warning: 'ngth' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/fs/cifs/netmisc.c:133:40: warning: 'mapping_table_ERRHRD' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/tlv320aic23.c:56:30: warning: 'tlv320aic23_rec_src' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:1042:5: warning: format '%x' expects argument of type 'unsigned int', but argument 5 has type 'size_t {aka long unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:1694:3: warning: format '%d' expects argument of type 'int', but argument 5 has type 'size_t {aka long unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:1694:3: warning: format '%d' expects argument of type 'int', but argument 6 has type 'size_t {aka long unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/fs/cifs/cifsacl.c:43:30: warning: 'sid_user' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/dma/pl330.c:2317:21: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8737.c:116:30: warning: 'high_3d' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/gpio/gpio-mcp23s08.c:643:10: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8900.c:451:38: warning: 'wm8900_dapm_routput2_control' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8900.c:448:38: warning: 'wm8900_dapm_loutput2_control' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8974.c:202:38: warning: 'wm8974_mic_boost_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8974.c:198:38: warning: 'wm8974_aux_boost_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8988.c:273:30: warning: 'wm8988_rline_enum' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:527:38: warning: 'wm8990_dapm_rxvoice_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:126:35: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:118:35: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:526:38: warning: 'wm8991_dapm_rxvoice_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:126:27: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:106:27: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/core/skbuff.c:358:30: warning: 'netdev_alloc_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/dcb/dcbnl.c:183:32: warning: 'dcbnl_ieee_app' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/core/net-sysfs.c:30:19: warning: 'fmt_long_hex' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ipv4/tcp_ipv4.c:576:30: warning: 'tcp_sk_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ipv4/icmp.c:208:30: warning: 'icmp_sk_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/fs/fscache/object.c:34:25: warning: 'fscache_osm_CREATE_OBJECT' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ipv4/ping.c:1144:36: warning: 'ping_v4_seq_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/hwmon/nct6775.c:580:18: warning: 'NCT6106_REG_TOLERANCE_H' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/mac80211/debugfs.c:70:23: warning: 'rate_ctrl_alg_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/mac80211/debugfs_sta.c:35:37: warning: 'sta_aid_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/iio/adc/exynos_adc.c:112:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/iio/adc/ad7793.c:449:37: warning: 'ad7797_attribute_group' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/netfilter/xt_recent.c:103:37: warning: 'recent_old_fops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/input/joystick/analog.c:171:2: warning: #warning Precise timer not defined for this architecture. [-Wcpp]
/home/broonie/build/linux-stable-rt/net/packet/af_packet.c:3662:4: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/fs/ncpfs/dir.c:860:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/input/misc/xen-kbdfront.c:257:57: warning: format '%lu' expects argument of type 'long unsigned int', but argument 5 has type 'long long unsigned int' [-Wformat=]
/home/broonie/build/linux-stable-rt/net/sched/sch_choke.c:589:37: warning: 'choke_class_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/wireless/nl80211.c:393:1: warning: 'nl80211_wowlan_tcp_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/wireless/nl80211.c:380:1: warning: 'nl80211_wowlan_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/media/dvb-frontends/drxd_hard.c:2635:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/media/dvb-frontends/drxd_hard.c:2695:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/media/dvb-frontends/drxk_hard.c:2223:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/media/dvb-frontends/dib0090.c:852:18: warning: 'rf_ramp_pwm_sband' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/media/dvb-frontends/dib0090.c:800:18: warning: 'bb_ramp_pwm_boost' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/mfd/arizona-core.c:509:10: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/mfd/tps65217.c:173:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/misc/bh1770glc.c:184:17: warning: 'prox_curr_ma' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/misc/apds990x.c:191:17: warning: 'ir_currents' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/media/radio/radio-shark.c:274:13: warning: 'shark_resume_leds' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/media/radio/radio-shark2.c:240:13: warning: 'shark_resume_leds' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/smsc/smc91x.c:1899:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/power/reset/xgene-reboot.c:80:17: warning: assignment from incompatible pointer type [-Wincompatible-pointer-types]
/home/broonie/build/linux-stable-rt/drivers/net/usb/r815x.c:197:33: warning: 'r8152_info' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/media/tuners/r820t.c:349:18: warning: 'r820t_mixer_gain_steps' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/media/tuners/r820t.c:345:18: warning: 'r820t_lna_gain_steps' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/usb/usbnet.c:85:19: warning: 'driver_name' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/regulator/pcap-regulator.c:93:27: warning: 'SW3_table' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/regulator/tps62360-regulator.c:363:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/spi/spi-atmel.c:1336:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/spi/spi-atmel.c:1461:19: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/spi/spi-pl022.c:281:31: warning: large integer implicitly truncated to unsigned type [-Woverflow]
/home/broonie/build/linux-stable-rt/drivers/staging/bcm/CmHost.c:1387:39: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
/home/broonie/build/linux-stable-rt/drivers/staging/bcm/CmHost.c:1426:37: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
/home/broonie/build/linux-stable-rt/drivers/staging/bcm/CmHost.c:1440:35: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
/home/broonie/build/linux-stable-rt/include/linux/compiler-gcc.h:136:2: warning: large integer implicitly truncated to unsigned type [-Woverflow]
/home/broonie/build/linux-stable-rt/drivers/media/usb/gspca/ov519.c:375:37: warning: 'ovfx2_cif_mode' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/media/usb/gspca/ov519.c:363:37: warning: 'ovfx2_vga_mode' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:414:29: warning: 'seq_el_on' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:402:29: warning: 'seq_els_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:390:29: warning: 'seq_gls_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:378:29: warning: 'seq_sd_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:366:29: warning: 'seq_gam_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:356:29: warning: 'seq_vbl_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:346:29: warning: 'seq_vbh_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:334:29: warning: 'seq_vint_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:324:29: warning: 'seq_vmos_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:314:29: warning: 'seq_vgl_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:304:29: warning: 'seq_vgh_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:294:29: warning: 'seq_vreg1_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:284:29: warning: 'seq_vl3_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:274:29: warning: 'seq_vci1_2nd_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:264:29: warning: 'seq_vl2_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:254:29: warning: 'seq_vl1_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:244:29: warning: 'seq_vci1_1st_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:212:29: warning: 'seq_pwr_ctrl' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:187:29: warning: 'seq_apon' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:92:29: warning: 'seq_swreset' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/lms501kf03.c:100:28: warning: 'seq_sleep_in' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/lms501kf03.c:96:28: warning: 'seq_up_dn' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/s6e63m0.c:331:29: warning: 'seq_elvss_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/s6e63m0.c:317:29: warning: 'seq_acl_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/staging/frontier/tranzport.c:276:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/usb/gadget/gmidi.c:47:19: warning: 'shortname' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/usb/gadget/nokia.c:45:19: warning: 'product_nokia' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/xen-fbfront.c:588:57: warning: format '%lu' expects argument of type 'long unsigned int', but argument 5 has type 'long long unsigned int' [-Wformat=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmfmac/dhd_common.c:36:19: warning: 'brcmf_version' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c:483:19: warning: 'retry_limit' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/usb/gadget/mv_udc_core.c:62:19: warning: 'driver_desc' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/media/usb/usbvision/usbvision-core.c:94:18: warning: 'min_imgheight' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/media/usb/usbvision/usbvision-core.c:93:18: warning: 'min_imgwidth' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/media/usb/usbvision/usbvision-core.c:92:18: warning: 'max_imgheight' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/media/usb/usbvision/usbvision-core.c:91:18: warning: 'max_imgwidth' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/usb/gadget/mv_u3d_core.c:39:19: warning: 'driver_desc' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_lcn.c:1521:33: warning: 'dot11lcnphytbl_rx_gain_info_rev1' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9298:18: warning: 'papd_cal_scalars_tbl_core1_rev3' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9231:18: warning: 'papd_comp_epsilon_tbl_core1_rev3' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9164:18: warning: 'papd_cal_scalars_tbl_core0_rev3' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9097:18: warning: 'papd_comp_epsilon_tbl_core0_rev3' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/staging/rtl8712/rtl871x_ioctl_linux.c:69:27: warning: 'iw_operation_mode' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/staging/rtl8712/ieee80211.c:78:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/staging/rts5139/rts51x.c:204:13: warning: 'rts51x_try_to_enter_ss' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/libertas_tf/main.c:30:19: warning: 'lbtf_driver_version' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.c:2188:45: warning: iteration 14 invokes undefined behavior [-Waggressive-loop-optimizations]
/home/broonie/build/linux-stable-rt/drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.c:2190:42: warning: array subscript is above array bounds [-Warray-bounds]
/home/broonie/build/linux-stable-rt/drivers/staging/rtl8188eu/os_dep/ioctl_linux.c:941:59: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]
/home/broonie/build/linux-stable-rt/drivers/staging/rtl8188eu/os_dep/ioctl_linux.c:2629:62: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]
/home/broonie/build/linux-stable-rt/drivers/staging/rtl8188eu/os_dep/ioctl_linux.c:4043:54: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]
/home/broonie/build/linux-stable-rt/drivers/staging/rtl8188eu/os_dep/ioctl_linux.c:4052:42: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]
/home/broonie/build/linux-stable-rt/drivers/usb/serial/garmin_gps.c:205:28: warning: 'PRIVATE_REQ' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/usb/serial/garmin_gps.c:199:28: warning: 'GARMIN_STOP_PVT_REQ' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/usb/serial/garmin_gps.c:197:28: warning: 'GARMIN_START_PVT_REQ' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/usb/serial/garmin_gps.c:195:28: warning: 'GARMIN_APP_LAYER_REPLY' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/staging/vt6656/main_usb.c:1210:7: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/staging/vt6656/bssdb.c:506:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/staging/vt6656/mib.c:385:4: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/staging/vt6656/iwctl.c:1825:25: warning: 'iwctl_private_handler' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/staging/vt6656/usbpipe.c:115:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/staging/vt6656/usbpipe.c:174:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/rtl818x/rtl8187/rtl8225.c:520:17: warning: 'rtl8225z2_tx_power_ofdm' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/usb/storage/realtek_cr.c:699:13: warning: 'fw5895_init' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/usb/storage/realtek_cr.c:629:12: warning: 'config_autodelink_before_power_down' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/rtlwifi/efuse.c:38:31: warning: 'RTL8712_SDIO_EFUSE_TABLE' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/rtlwifi/efuse.c:34:17: warning: 'MAX_PGPKT_SIZE' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/include/linux/compiler-gcc.h:136:2: warning: large integer implicitly truncated to unsigned type [-Woverflow]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ti/wlcore/spi.c:321:1: warning: the frame size of 9728 bytes is larger than 2048 bytes [-Wframe-larger-than=]
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 2 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/mm/slub.c:1310:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/fs/nfs/nfs4proc.c:2925:10: warning: switch condition has boolean value [-Wswitch-bool]
-------------------------------------------------------------------------------
x86_64-defconfig : PASS, 0 errors, 2 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/mm/slub.c:1310:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/drivers/thermal/x86_pkg_temp_thermal.c:414:1: warning: no return statement in function returning non-void [-Wreturn-type]
-------------------------------------------------------------------------------
arm-allmodconfig : PASS, 0 errors, 38 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/arch/arm/mach-cns3xxx/pcie.c:350:1: warning: the frame size of 1072 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/mm/slub.c:1310:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:377:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:380:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:383:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/fs/nfs/nfs4proc.c:2925:10: warning: switch condition has boolean value [-Wswitch-bool]
/home/broonie/build/linux-stable-rt/drivers/mtd/chips/cfi_cmdset_0020.c:654:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/net/sunrpc/xprtrdma/verbs.c:1774:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/mtd/nand/gpmi-nand/gpmi-nand.c:120:13: warning: 'set_geometry_by_ecc_info' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/amd/nmclan_cs.c:625:3: warning: 'pcmcia_request_exclusive_irq' is deprecated [-Wdeprecated-declarations]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/dec/tulip/winbond-840.c:911:2: warning: #warning Processor architecture undefined [-Wcpp]
/home/broonie/build/linux-stable-rt/drivers/pinctrl/pinctrl-bcm2835.c:1060:2: warning: ignoring return value of 'gpiochip_remove', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/pinctrl/pinctrl-bcm2835.c:1043:3: warning: ignoring return value of 'gpiochip_remove', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/power/ab8500_charger.c:1390:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/power/ab8500_charger.c:1559:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/power/pm2301_charger.c:725:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/staging/dgap/dgap_driver.c:982:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/staging/dgap/dgap_fep5.c:173:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/staging/dgap/dgap_fep5.c:112:1: warning: the frame size of 1040 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/staging/dgap/dgap_tty.c:664:1: warning: the frame size of 1056 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/staging/dgnc/dgnc_tty.c:613:1: warning: the frame size of 1056 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/tty/serial/efm32-uart.c:834:20: warning: 'efm32_uart_exit' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/staging/rtl8188eu/os_dep/ioctl_linux.c:941:59: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]
/home/broonie/build/linux-stable-rt/drivers/staging/rtl8188eu/os_dep/ioctl_linux.c:2629:62: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]
/home/broonie/build/linux-stable-rt/drivers/staging/rtl8188eu/os_dep/ioctl_linux.c:4043:54: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]
/home/broonie/build/linux-stable-rt/drivers/staging/rtl8188eu/os_dep/ioctl_linux.c:4052:42: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]
/home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:7901:5: warning: case value '257' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
/home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:7898:5: warning: case value '513' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
/home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:8517:5: warning: case value '257' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
/home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:8510:5: warning: case value '513' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
/home/broonie/build/linux-stable-rt/drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
/home/broonie/build/linux-stable-rt/drivers/staging/sm7xxfb/sm7xxfb.c:117:19: warning: 'sm7xx_vga_setup' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/staging/vt6655/device_main.c:3257:1: warning: the frame size of 1864 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/staging/vt6655/iwctl.c:758:1: warning: the frame size of 1280 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/video/aty/radeon_pm.c:1718:13: warning: 'radeon_reinitialize_M10' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/staging/wlan-ng/prism2fw.c:795:1: warning: the frame size of 1072 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/video/omap2/displays-new/panel-sony-acx565akm.c:608:25: warning: unused variable 'ddata' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/Documentation/misc-devices/mei/mei-amt-version.c:103:5: warning: 'acmd.fd' is used uninitialized in this function [-Wuninitialized]
-------------------------------------------------------------------------------
arm-allnoconfig : PASS, 0 errors, 1 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/mm/slub.c:1310:6: warning: unused variable 'idx' [-Wunused-variable]
-------------------------------------------------------------------------------
x86_64-allnoconfig : PASS, 0 errors, 1 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/mm/slub.c:1310:6: warning: unused variable 'idx' [-Wunused-variable]
-------------------------------------------------------------------------------
arm64-defconfig : PASS, 0 errors, 15 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/kernel/cpu.c:468:13: warning: 'cpu_notify_nofail' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/mm/swap.c:50:30: warning: 'swapvec_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/swap.c:49:30: warning: 'rotate_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/kernel/workqueue.c:333:30: warning: 'pendingb_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/core/skbuff.c:358:30: warning: 'netdev_alloc_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/slub.c:1310:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/kernel/cgroup.c:1276:5: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses]
/home/broonie/build/linux-stable-rt/net/core/net-sysfs.c:30:19: warning: 'fmt_long_hex' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/lib/radix-tree.c:97:30: warning: 'radix_tree_preloads_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/smsc/smc91x.c:1899:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/net/ipv4/tcp_ipv4.c:576:30: warning: 'tcp_sk_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ipv4/arp.c:152:31: warning: 'arp_broken_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ipv4/icmp.c:208:30: warning: 'icmp_sk_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ipv4/ping.c:1144:36: warning: 'ping_v4_seq_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/packet/af_packet.c:3662:4: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
Tree/Branch: v3.10.105-rt120
Git describe: v3.10.105-rt120
Commit: 6e9f736c52 Linux 3.10.105-rt120
Build Time: 39 min 54 sec
Passed: 7 / 8 ( 87.50 %)
Failed: 1 / 8 ( 12.50 %)
Errors: 1
Warnings: 182
Section Mismatches: 0
Failed defconfigs:
arm64-allmodconfig
Errors:
arm64-allmodconfig
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
7 warnings 0 mismatches : arm64-allnoconfig
131 warnings 0 mismatches : arm64-allmodconfig
7 warnings 0 mismatches : arm-multi_v7_defconfig
4 warnings 0 mismatches : x86_64-defconfig
56 warnings 0 mismatches : arm-allmodconfig
3 warnings 0 mismatches : arm-allnoconfig
3 warnings 0 mismatches : x86_64-allnoconfig
18 warnings 0 mismatches : arm64-defconfig
-------------------------------------------------------------------------------
Errors summary: 1
9 /home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
Warnings Summary: 182
8 /home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
5 /home/broonie/build/linux-stable-rt/net/core/sysctl_net_core.c:24:12: warning: 'one' defined but not used [-Wunused-variable]
4 /home/broonie/build/linux-stable-rt/scripts/sortextable.h:158:3: warning: 'relocs_size' may be used uninitialized in this function [-Wmaybe-uninitialized]
4 /home/broonie/build/linux-stable-rt/include/linux/ftrace.h:617:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
4 /home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:162:3: warning: value computed is not used [-Wunused-value]
3 /home/broonie/build/linux-stable-rt/mm/swap.c:47:30: warning: 'swapvec_lock' defined but not used [-Wunused-const-variable=]
3 /home/broonie/build/linux-stable-rt/mm/swap.c:46:30: warning: 'rotate_lock' defined but not used [-Wunused-const-variable=]
3 /home/broonie/build/linux-stable-rt/lib/radix-tree.c:96:30: warning: 'radix_tree_preloads_lock' defined but not used [-Wunused-const-variable=]
3 /home/broonie/build/linux-stable-rt/kernel/workqueue.c:319:30: warning: 'pendingb_lock' defined but not used [-Wunused-const-variable=]
3 /home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
3 /home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
3 /home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:74:3: warning: value computed is not used [-Wunused-value]
2 /home/broonie/build/linux-stable-rt/net/packet/af_packet.c:3674:4: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
2 /home/broonie/build/linux-stable-rt/net/ipv4/tcp_ipv4.c:593:30: warning: 'tcp_sk_lock' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/ipv4/icmp.c:208:30: warning: 'icmp_sk_lock' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/core/skbuff.c:343:30: warning: 'netdev_alloc_lock' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/core/rtnetlink.c:1142:32: warning: 'ifla_vf_policy' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/core/rtnetlink.c:1138:32: warning: 'ifla_vfinfo_policy' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/core/net-sysfs.c:30:19: warning: 'fmt_long_hex' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
2 /home/broonie/build/linux-stable-rt/fs/namespace.c:2590:6: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
2 /home/broonie/build/linux-stable-rt/fs/namespace.c:2590:6: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
2 /home/broonie/build/linux-stable-rt/drivers/tty/sysrq.c:907:33: warning: array subscript is above array bounds [-Warray-bounds]
2 /home/broonie/build/linux-stable-rt/drivers/net/wireless/iwlwifi/mvm/fw.c:90:64: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
2 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/smsc/smc91x.c:1899:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:526:38: warning: 'wm8991_dapm_rxvoice_controls' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:126:27: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:106:27: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:532:38: warning: 'wm8990_dapm_rxvoice_controls' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:126:35: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:118:35: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8988.c:273:30: warning: 'wm8988_rline_enum' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8974.c:202:38: warning: 'wm8974_mic_boost_controls' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8974.c:198:38: warning: 'wm8974_aux_boost_controls' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8900.c:451:38: warning: 'wm8900_dapm_routput2_control' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8900.c:448:38: warning: 'wm8900_dapm_loutput2_control' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8737.c:116:30: warning: 'high_3d' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/tlv320aic23.c:56:30: warning: 'tlv320aic23_rec_src' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/ml26124.c:71:35: warning: 'ngth' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:868:30: warning: 'max98090_pa2en_enum' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:864:30: warning: 'max98090_pa1en_enum' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:389:35: warning: 'max98090_alc_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:387:35: warning: 'max98090_sidetone_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:2354:12: warning: 'max98090_runtime_suspend' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:2341:12: warning: 'max98090_runtime_resume' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/cs42l73.c:383:38: warning: 'xsp_output_mux' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/cs42l73.c:380:38: warning: 'vsp_output_mux' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/wireless/nl80211.c:417:1: warning: 'nl80211_wowlan_tcp_policy' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/wireless/nl80211.c:404:1: warning: 'nl80211_wowlan_policy' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/sunrpc/xprtrdma/verbs.c:1774:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/net/sched/sch_choke.c:595:37: warning: 'choke_class_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/netfilter/xt_recent.c:103:37: warning: 'recent_old_fops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/mac80211/debugfs_sta.c:35:37: warning: 'sta_aid_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/mac80211/debugfs.c:70:23: warning: 'rate_ctrl_alg_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/ipv4/arp.c:152:31: warning: 'arp_broken_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/ieee802154/6lowpan.c:89:17: warning: 'lowpan_unc_ctxconf' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/dcb/dcbnl.c:183:32: warning: 'dcbnl_ieee_app' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/caif/cfpkt_skbuff.c:296:3: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/kernel/modsign_pubkey.c:28:30: warning: 'annoy_ccache' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/kernel/auditfilter.c:426:3: warning: this decimal constant is unsigned only in ISO C90
1 /home/broonie/build/linux-stable-rt/include/linux/spinlock.h:237:3: warning: 'flags' may be used uninitialized in this function [-Wmaybe-uninitialized]
1 /home/broonie/build/linux-stable-rt/include/linux/list.h:457:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/include/linux/kernel.h:677:17: warning: comparison of distinct pointer types lacks a cast
1 /home/broonie/build/linux-stable-rt/include/linux/kern_levels.h:4:18: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'resource_size_t {aka long long unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/include/linux/ftrace.h:618:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
1 /home/broonie/build/linux-stable-rt/include/linux/clocksource.h:345:20: warning: comparison of distinct pointer types lacks a cast
1 /home/broonie/build/linux-stable-rt/fs/ncpfs/dir.c:854:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/fs/cifs/netmisc.c:133:40: warning: 'mapping_table_ERRHRD' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/fs/cifs/cifsacl.c:43:30: warning: 'sid_user' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/fs/afs/cmservice.c:78:35: warning: 'afs_SRXCBProbeUuid' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/s6e63m0.c:331:29: warning: 'seq_elvss_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/s6e63m0.c:317:29: warning: 'seq_acl_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/lms501kf03.c:96:28: warning: 'seq_up_dn' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/lms501kf03.c:100:28: warning: 'seq_sleep_in' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:92:29: warning: 'seq_swreset' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:414:29: warning: 'seq_el_on' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:402:29: warning: 'seq_els_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:390:29: warning: 'seq_gls_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:378:29: warning: 'seq_sd_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:366:29: warning: 'seq_gam_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:356:29: warning: 'seq_vbl_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:346:29: warning: 'seq_vbh_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:334:29: warning: 'seq_vint_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:324:29: warning: 'seq_vmos_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:314:29: warning: 'seq_vgl_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:304:29: warning: 'seq_vgh_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:294:29: warning: 'seq_vreg1_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:284:29: warning: 'seq_vl3_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:274:29: warning: 'seq_vci1_2nd_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:264:29: warning: 'seq_vl2_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:254:29: warning: 'seq_vl1_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:244:29: warning: 'seq_vci1_1st_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:212:29: warning: 'seq_pwr_ctrl' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:187:29: warning: 'seq_apon' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/aty/radeon_pm.c:1718:13: warning: 'radeon_reinitialize_M10' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/usb/host/xhci.c:3603:17: warning: unused variable 'dev' [-Wunused-variable]
1 /home/broonie/build/linux-stable-rt/drivers/usb/host/xhci.c:3517:17: warning: unused variable 'dev' [-Wunused-variable]
1 /home/broonie/build/linux-stable-rt/drivers/usb/gadget/nokia.c:57:19: warning: 'product_nokia' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/usb/gadget/mv_udc_core.c:62:19: warning: 'driver_desc' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/usb/gadget/mv_u3d_core.c:39:19: warning: 'driver_desc' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/usb/gadget/gmidi.c:47:19: warning: 'shortname' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/wlan-ng/prism2fw.c:795:1: warning: the frame size of 1072 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/vt6655/iwctl.c:758:1: warning: the frame size of 1280 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/vt6655/device_main.c:3257:1: warning: the frame size of 1864 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/sm7xxfb/sm7xxfb.c:117:19: warning: 'sm7xx_vga_setup' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/staging/panel/panel.c:1804:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/drivers/staging/iio/adc/ad7192.c:237:3: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/drivers/spi/spi-pl022.c:281:31: warning: large integer implicitly truncated to unsigned type [-Woverflow]
1 /home/broonie/build/linux-stable-rt/drivers/spi/spi-gpio.c:255:8: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/pm8001/pm8001_init.c:427:5: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:8517:5: warning: case value '257' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:8510:5: warning: case value '513' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:7901:5: warning: case value '257' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:7898:5: warning: case value '513' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
1 /home/broonie/build/linux-stable-rt/drivers/regulator/tps62360-regulator.c:364:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/regulator/pcap-regulator.c:93:27: warning: 'SW3_table' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/power/twl4030_charger.c:192:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/power/pm2301_charger.c:725:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/power/ab8500_charger.c:1558:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/power/ab8500_charger.c:1389:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/pinctrl/pinctrl-bcm2835.c:1053:2: warning: ignoring return value of 'gpiochip_remove', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/pinctrl/pinctrl-bcm2835.c:1036:3: warning: ignoring return value of 'gpiochip_remove', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ti/wlcore/spi.c:321:1: warning: the frame size of 8688 bytes is larger than 2048 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/rtlwifi/efuse.c:38:31: warning: 'RTL8712_SDIO_EFUSE_TABLE' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/rtlwifi/efuse.c:34:17: warning: 'MAX_PGPKT_SIZE' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/libertas_tf/main.c:30:19: warning: 'lbtf_driver_version' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9298:18: warning: 'papd_cal_scalars_tbl_core1_rev3' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9231:18: warning: 'papd_comp_epsilon_tbl_core1_rev3' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9164:18: warning: 'papd_cal_scalars_tbl_core0_rev3' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9097:18: warning: 'papd_comp_epsilon_tbl_core0_rev3' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_lcn.c:1523:33: warning: 'dot11lcnphytbl_rx_gain_info_rev1' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c:526:19: warning: 'retry_limit' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmfmac/dhd_common.c:36:19: warning: 'brcmf_version' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:41:18: warning: 'm2ThreshExt_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:40:18: warning: 'm1ThreshExt_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:39:18: warning: 'm2ThreshLowExt_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:38:18: warning: 'm1ThreshLowExt_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:37:18: warning: 'm2CountThrLow_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:36:18: warning: 'm2CountThr_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:35:18: warning: 'm2Thresh_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:34:18: warning: 'm1Thresh_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:33:18: warning: 'm2ThreshLow_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:32:18: warning: 'm1ThreshLow_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/sfc/selftest.c:389:9: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
1 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/neterion/vxge/vxge-main.c:2143:13: warning: 'adaptive_coalesce_rx_interrupts' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/neterion/vxge/vxge-main.c:2115:13: warning: 'adaptive_coalesce_tx_interrupts' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/dec/tulip/winbond-840.c:911:2: warning: #warning Processor architecture undefined [-Wcpp]
1 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/amd/nmclan_cs.c:625:3: warning: 'pcmcia_request_exclusive_irq' is deprecated [-Wdeprecated-declarations]
1 /home/broonie/build/linux-stable-rt/drivers/mtd/chips/cfi_cmdset_0020.c:654:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/mmc/host/tmio_mmc_pio.c:798:3: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/misc/lkdtm.c:276:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/misc/bh1770glc.c:184:17: warning: 'prox_curr_ma' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/misc/apds990x.c:191:17: warning: 'ir_currents' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/mfd/tps65217.c:173:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/media/platform/omap3isp/ispccp2.c:167:3: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/media/platform/coda.c:952:40: warning: array subscript is above array bounds [-Warray-bounds]
1 /home/broonie/build/linux-stable-rt/drivers/media/platform/coda.c:944:39: warning: array subscript is above array bounds [-Warray-bounds]
1 /home/broonie/build/linux-stable-rt/drivers/iommu/omap-iommu.c:1245:17: warning: format '%lx' expects argument of type 'long unsigned int', but argument 4 has type 'dma_addr_t {aka unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/iommu/omap-iommu.c:1238:17: warning: format '%lx' expects argument of type 'long unsigned int', but argument 4 has type 'dma_addr_t {aka unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/input/keyboard/cros_ec_keyb.c:210:13: warning: 'cros_ec_keyb_clear_keyboard' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/input/joystick/analog.c:171:2: warning: #warning Precise timer not defined for this architecture. [-Wcpp]
1 /home/broonie/build/linux-stable-rt/drivers/infiniband/hw/nes/nes_hw.c:92:23: warning: 'nes_tcp_state_str' defined but not used [-Wunused-variable]
1 /home/broonie/build/linux-stable-rt/drivers/infiniband/hw/nes/nes_hw.c:81:23: warning: 'nes_iwarp_state_str' defined but not used [-Wunused-variable]
1 /home/broonie/build/linux-stable-rt/drivers/infiniband/hw/cxgb4/mem.c:79:25: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/iio/adc/exynos_adc.c:111:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/iio/adc/ad7793.c:449:37: warning: 'ad7797_attribute_group' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/gpu/drm/exynos/exynos_hdmi.c:1702:2: warning: ignoring return value of 'regulator_bulk_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/gpio/gpio-mcp23s08.c:622:10: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/dma/pl330.c:2379:21: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/dma/pl330.c:2058:5: warning: passing argument 3 of 'dma_alloc_coherent' from incompatible pointer type [-Wincompatible-pointer-types]
1 /home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:920:5: warning: format '%x' expects argument of type 'unsigned int', but argument 5 has type 'size_t {aka long unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:848:31: warning: format '%x' expects argument of type 'unsigned int', but argument 7 has type 'dma_addr_t {aka long long unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:848:31: warning: format '%x' expects argument of type 'unsigned int', but argument 4 has type 'dma_addr_t {aka long long unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/block/mtip32xx/mtip32xx.c:2827:1: warning: the frame size of 1080 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:383:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
1 /home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:380:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
1 /home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:377:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
1 /home/broonie/build/linux-stable-rt/arch/arm/mm/init.c:731:35: warning: passing argument 2 of 'free_reserved_area' makes integer from pointer without a cast [-Wint-conversion]
1 /home/broonie/build/linux-stable-rt/arch/arm/mm/init.c:731:21: warning: passing argument 1 of 'free_reserved_area' makes integer from pointer without a cast [-Wint-conversion]
1 /home/broonie/build/linux-stable-rt/arch/arm/mach-omap2/board-am3517crane.c:113:6: warning: unused variable 'ret' [-Wunused-variable]
1 /home/broonie/build/linux-stable-rt/Documentation/misc-devices/mei/mei-amt-version.c:103:5: warning: 'acmd.fd' is used uninitialized in this function [-Wuninitialized]
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm64-allnoconfig : PASS, 0 errors, 7 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/mm/swap.c:47:30: warning: 'swapvec_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/swap.c:46:30: warning: 'rotate_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/kernel/workqueue.c:319:30: warning: 'pendingb_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/lib/radix-tree.c:96:30: warning: 'radix_tree_preloads_lock' defined but not used [-Wunused-const-variable=]
-------------------------------------------------------------------------------
arm64-allmodconfig : FAIL, 9 errors, 131 warnings, 0 section mismatches
Errors:
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
Warnings:
/home/broonie/build/linux-stable-rt/mm/swap.c:47:30: warning: 'swapvec_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/swap.c:46:30: warning: 'rotate_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/kernel/workqueue.c:319:30: warning: 'pendingb_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/fs/afs/cmservice.c:78:35: warning: 'afs_SRXCBProbeUuid' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:74:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:74:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:74:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/include/linux/ftrace.h:617:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable-rt/include/linux/ftrace.h:617:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable-rt/include/linux/ftrace.h:617:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable-rt/include/linux/ftrace.h:618:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable-rt/include/linux/ftrace.h:617:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable-rt/kernel/modsign_pubkey.c:28:30: warning: 'annoy_ccache' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/fs/cifs/netmisc.c:133:40: warning: 'mapping_table_ERRHRD' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/cs42l73.c:383:38: warning: 'xsp_output_mux' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/cs42l73.c:380:38: warning: 'vsp_output_mux' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/fs/cifs/cifsacl.c:43:30: warning: 'sid_user' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:2354:12: warning: 'max98090_runtime_suspend' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:2341:12: warning: 'max98090_runtime_resume' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:868:30: warning: 'max98090_pa2en_enum' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:864:30: warning: 'max98090_pa1en_enum' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:389:35: warning: 'max98090_alc_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:387:35: warning: 'max98090_sidetone_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/ml26124.c:71:35: warning: 'ngth' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/tlv320aic23.c:56:30: warning: 'tlv320aic23_rec_src' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8737.c:116:30: warning: 'high_3d' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8900.c:451:38: warning: 'wm8900_dapm_routput2_control' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8900.c:448:38: warning: 'wm8900_dapm_loutput2_control' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:848:31: warning: format '%x' expects argument of type 'unsigned int', but argument 4 has type 'dma_addr_t {aka long long unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:848:31: warning: format '%x' expects argument of type 'unsigned int', but argument 7 has type 'dma_addr_t {aka long long unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:920:5: warning: format '%x' expects argument of type 'unsigned int', but argument 5 has type 'size_t {aka long unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8974.c:202:38: warning: 'wm8974_mic_boost_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8974.c:198:38: warning: 'wm8974_aux_boost_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/dma/pl330.c:2058:5: warning: passing argument 3 of 'dma_alloc_coherent' from incompatible pointer type [-Wincompatible-pointer-types]
/home/broonie/build/linux-stable-rt/drivers/dma/pl330.c:2379:21: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8988.c:273:30: warning: 'wm8988_rline_enum' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:532:38: warning: 'wm8990_dapm_rxvoice_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:126:35: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:118:35: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:526:38: warning: 'wm8991_dapm_rxvoice_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:126:27: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:106:27: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/gpio/gpio-mcp23s08.c:622:10: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/iio/adc/exynos_adc.c:111:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/iio/adc/ad7793.c:449:37: warning: 'ad7797_attribute_group' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/input/joystick/analog.c:171:2: warning: #warning Precise timer not defined for this architecture. [-Wcpp]
/home/broonie/build/linux-stable-rt/drivers/input/keyboard/cros_ec_keyb.c:210:13: warning: 'cros_ec_keyb_clear_keyboard' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/net/caif/cfpkt_skbuff.c:296:3: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/net/core/skbuff.c:343:30: warning: 'netdev_alloc_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:162:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/net/core/sysctl_net_core.c:24:12: warning: 'one' defined but not used [-Wunused-variable]
/home/broonie/build/linux-stable-rt/fs/ncpfs/dir.c:854:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/net/core/rtnetlink.c:1142:32: warning: 'ifla_vf_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/core/rtnetlink.c:1138:32: warning: 'ifla_vfinfo_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/core/net-sysfs.c:30:19: warning: 'fmt_long_hex' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/dcb/dcbnl.c:183:32: warning: 'dcbnl_ieee_app' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/mfd/tps65217.c:173:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/misc/bh1770glc.c:184:17: warning: 'prox_curr_ma' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/misc/apds990x.c:191:17: warning: 'ir_currents' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ieee802154/6lowpan.c:89:17: warning: 'lowpan_unc_ctxconf' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ipv4/tcp_ipv4.c:593:30: warning: 'tcp_sk_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ipv4/icmp.c:208:30: warning: 'icmp_sk_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/smsc/smc91x.c:1899:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:41:18: warning: 'm2ThreshExt_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:40:18: warning: 'm1ThreshExt_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:39:18: warning: 'm2ThreshLowExt_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:38:18: warning: 'm1ThreshLowExt_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:37:18: warning: 'm2CountThrLow_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:36:18: warning: 'm2CountThr_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:35:18: warning: 'm2Thresh_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:34:18: warning: 'm1Thresh_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:33:18: warning: 'm2ThreshLow_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:32:18: warning: 'm1ThreshLow_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmfmac/dhd_common.c:36:19: warning: 'brcmf_version' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c:526:19: warning: 'retry_limit' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/lib/radix-tree.c:96:30: warning: 'radix_tree_preloads_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_lcn.c:1523:33: warning: 'dot11lcnphytbl_rx_gain_info_rev1' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9298:18: warning: 'papd_cal_scalars_tbl_core1_rev3' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9231:18: warning: 'papd_comp_epsilon_tbl_core1_rev3' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9164:18: warning: 'papd_cal_scalars_tbl_core0_rev3' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9097:18: warning: 'papd_comp_epsilon_tbl_core0_rev3' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/libertas_tf/main.c:30:19: warning: 'lbtf_driver_version' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:162:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/rtlwifi/efuse.c:38:31: warning: 'RTL8712_SDIO_EFUSE_TABLE' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/rtlwifi/efuse.c:34:17: warning: 'MAX_PGPKT_SIZE' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/mac80211/debugfs.c:70:23: warning: 'rate_ctrl_alg_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/mac80211/debugfs_sta.c:35:37: warning: 'sta_aid_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/packet/af_packet.c:3674:4: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:162:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ti/wlcore/spi.c:321:1: warning: the frame size of 8688 bytes is larger than 2048 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/net/netfilter/xt_recent.c:103:37: warning: 'recent_old_fops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/regulator/pcap-regulator.c:93:27: warning: 'SW3_table' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/regulator/tps62360-regulator.c:364:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/net/sched/sch_choke.c:595:37: warning: 'choke_class_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/include/linux/list.h:457:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/net/wireless/nl80211.c:417:1: warning: 'nl80211_wowlan_tcp_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/wireless/nl80211.c:404:1: warning: 'nl80211_wowlan_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/spi/spi-gpio.c:255:8: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/spi/spi-pl022.c:281:31: warning: large integer implicitly truncated to unsigned type [-Woverflow]
/home/broonie/build/linux-stable-rt/include/linux/kern_levels.h:4:18: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'resource_size_t {aka long long unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/drivers/usb/gadget/gmidi.c:47:19: warning: 'shortname' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/usb/gadget/nokia.c:57:19: warning: 'product_nokia' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:414:29: warning: 'seq_el_on' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:402:29: warning: 'seq_els_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:390:29: warning: 'seq_gls_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:378:29: warning: 'seq_sd_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:366:29: warning: 'seq_gam_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:356:29: warning: 'seq_vbl_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:346:29: warning: 'seq_vbh_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:334:29: warning: 'seq_vint_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:324:29: warning: 'seq_vmos_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:314:29: warning: 'seq_vgl_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:304:29: warning: 'seq_vgh_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:294:29: warning: 'seq_vreg1_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:284:29: warning: 'seq_vl3_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:274:29: warning: 'seq_vci1_2nd_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:264:29: warning: 'seq_vl2_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:254:29: warning: 'seq_vl1_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:244:29: warning: 'seq_vci1_1st_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:212:29: warning: 'seq_pwr_ctrl' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:187:29: warning: 'seq_apon' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:92:29: warning: 'seq_swreset' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/lms501kf03.c:100:28: warning: 'seq_sleep_in' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/lms501kf03.c:96:28: warning: 'seq_up_dn' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/s6e63m0.c:331:29: warning: 'seq_elvss_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/s6e63m0.c:317:29: warning: 'seq_acl_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/usb/gadget/mv_udc_core.c:62:19: warning: 'driver_desc' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/usb/gadget/mv_u3d_core.c:39:19: warning: 'driver_desc' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/staging/iio/adc/ad7192.c:237:3: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/staging/panel/panel.c:1804:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 7 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/scripts/sortextable.h:158:3: warning: 'relocs_size' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/scripts/sortextable.h:158:3: warning: 'relocs_size' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/net/core/sysctl_net_core.c:24:12: warning: 'one' defined but not used [-Wunused-variable]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:6: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:6: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/include/linux/spinlock.h:237:3: warning: 'flags' may be used uninitialized in this function [-Wmaybe-uninitialized]
-------------------------------------------------------------------------------
x86_64-defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/net/core/sysctl_net_core.c:24:12: warning: 'one' defined but not used [-Wunused-variable]
-------------------------------------------------------------------------------
arm-allmodconfig : PASS, 0 errors, 56 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/arch/arm/mm/init.c:731:21: warning: passing argument 1 of 'free_reserved_area' makes integer from pointer without a cast [-Wint-conversion]
/home/broonie/build/linux-stable-rt/arch/arm/mm/init.c:731:35: warning: passing argument 2 of 'free_reserved_area' makes integer from pointer without a cast [-Wint-conversion]
/home/broonie/build/linux-stable-rt/arch/arm/mach-omap2/board-am3517crane.c:113:6: warning: unused variable 'ret' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:377:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:380:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:383:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/kernel/auditfilter.c:426:3: warning: this decimal constant is unsigned only in ISO C90
/home/broonie/build/linux-stable-rt/include/linux/kernel.h:677:17: warning: comparison of distinct pointer types lacks a cast
/home/broonie/build/linux-stable-rt/drivers/block/mtip32xx/mtip32xx.c:2827:1: warning: the frame size of 1080 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/net/core/sysctl_net_core.c:24:12: warning: 'one' defined but not used [-Wunused-variable]
/home/broonie/build/linux-stable-rt/include/linux/clocksource.h:345:20: warning: comparison of distinct pointer types lacks a cast
/home/broonie/build/linux-stable-rt/drivers/gpu/drm/exynos/exynos_hdmi.c:1702:2: warning: ignoring return value of 'regulator_bulk_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/net/sunrpc/xprtrdma/verbs.c:1774:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/infiniband/hw/cxgb4/mem.c:79:25: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/iommu/omap-iommu.c:1238:17: warning: format '%lx' expects argument of type 'long unsigned int', but argument 4 has type 'dma_addr_t {aka unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/drivers/iommu/omap-iommu.c:1245:17: warning: format '%lx' expects argument of type 'long unsigned int', but argument 4 has type 'dma_addr_t {aka unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/drivers/infiniband/hw/nes/nes_hw.c:81:23: warning: 'nes_iwarp_state_str' defined but not used [-Wunused-variable]
/home/broonie/build/linux-stable-rt/drivers/infiniband/hw/nes/nes_hw.c:92:23: warning: 'nes_tcp_state_str' defined but not used [-Wunused-variable]
/home/broonie/build/linux-stable-rt/include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
/home/broonie/build/linux-stable-rt/include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
/home/broonie/build/linux-stable-rt/drivers/misc/lkdtm.c:276:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/mtd/chips/cfi_cmdset_0020.c:654:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/mmc/host/tmio_mmc_pio.c:798:3: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/amd/nmclan_cs.c:625:3: warning: 'pcmcia_request_exclusive_irq' is deprecated [-Wdeprecated-declarations]
/home/broonie/build/linux-stable-rt/drivers/media/platform/omap3isp/ispccp2.c:167:3: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/media/platform/coda.c:944:39: warning: array subscript is above array bounds [-Warray-bounds]
/home/broonie/build/linux-stable-rt/drivers/media/platform/coda.c:952:40: warning: array subscript is above array bounds [-Warray-bounds]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/dec/tulip/winbond-840.c:911:2: warning: #warning Processor architecture undefined [-Wcpp]
/home/broonie/build/linux-stable-rt/drivers/pinctrl/pinctrl-bcm2835.c:1053:2: warning: ignoring return value of 'gpiochip_remove', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/pinctrl/pinctrl-bcm2835.c:1036:3: warning: ignoring return value of 'gpiochip_remove', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/power/ab8500_charger.c:1389:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/power/ab8500_charger.c:1558:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/power/pm2301_charger.c:725:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/power/twl4030_charger.c:192:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/neterion/vxge/vxge-main.c:2115:13: warning: 'adaptive_coalesce_tx_interrupts' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/neterion/vxge/vxge-main.c:2143:13: warning: 'adaptive_coalesce_rx_interrupts' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/sfc/selftest.c:389:9: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/drivers/tty/sysrq.c:907:33: warning: array subscript is above array bounds [-Warray-bounds]
/home/broonie/build/linux-stable-rt/drivers/tty/sysrq.c:907:33: warning: array subscript is above array bounds [-Warray-bounds]
/home/broonie/build/linux-stable-rt/drivers/scsi/pm8001/pm8001_init.c:427:5: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/video/aty/radeon_pm.c:1718:13: warning: 'radeon_reinitialize_M10' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/usb/host/xhci.c:3517:17: warning: unused variable 'dev' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/drivers/usb/host/xhci.c:3603:17: warning: unused variable 'dev' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:7901:5: warning: case value '257' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
/home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:7898:5: warning: case value '513' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
/home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:8517:5: warning: case value '257' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
/home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:8510:5: warning: case value '513' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
/home/broonie/build/linux-stable-rt/drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
/home/broonie/build/linux-stable-rt/drivers/staging/sm7xxfb/sm7xxfb.c:117:19: warning: 'sm7xx_vga_setup' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/staging/vt6655/device_main.c:3257:1: warning: the frame size of 1864 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/staging/wlan-ng/prism2fw.c:795:1: warning: the frame size of 1072 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/staging/vt6655/iwctl.c:758:1: warning: the frame size of 1280 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/iwlwifi/mvm/fw.c:90:64: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/iwlwifi/mvm/fw.c:90:64: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/Documentation/misc-devices/mei/mei-amt-version.c:103:5: warning: 'acmd.fd' is used uninitialized in this function [-Wuninitialized]
-------------------------------------------------------------------------------
arm-allnoconfig : PASS, 0 errors, 3 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:6: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:6: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
-------------------------------------------------------------------------------
x86_64-allnoconfig : PASS, 0 errors, 3 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/scripts/sortextable.h:158:3: warning: 'relocs_size' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/scripts/sortextable.h:158:3: warning: 'relocs_size' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
-------------------------------------------------------------------------------
arm64-defconfig : PASS, 0 errors, 18 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/kernel/workqueue.c:319:30: warning: 'pendingb_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/swap.c:47:30: warning: 'swapvec_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/swap.c:46:30: warning: 'rotate_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/net/core/skbuff.c:343:30: warning: 'netdev_alloc_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:162:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/net/core/sysctl_net_core.c:24:12: warning: 'one' defined but not used [-Wunused-variable]
/home/broonie/build/linux-stable-rt/net/core/rtnetlink.c:1142:32: warning: 'ifla_vf_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/core/rtnetlink.c:1138:32: warning: 'ifla_vfinfo_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/lib/radix-tree.c:96:30: warning: 'radix_tree_preloads_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/core/net-sysfs.c:30:19: warning: 'fmt_long_hex' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/smsc/smc91x.c:1899:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/net/packet/af_packet.c:3674:4: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/net/ipv4/tcp_ipv4.c:593:30: warning: 'tcp_sk_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ipv4/arp.c:152:31: warning: 'arp_broken_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ipv4/icmp.c:208:30: warning: 'icmp_sk_lock' defined but not used [-Wunused-const-variable=]
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
Tree/Branch: v3.18-rt
Git describe: v3.18.48-rt53-8-g7da5438
Commit: 7da5438755 Linux 3.18.48-rt54
Build Time: 59 min 7 sec
Passed: 9 / 9 (100.00 %)
Failed: 0 / 9 ( 0.00 %)
Errors: 0
Warnings: 35
Section Mismatches: 0
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
13 warnings 0 mismatches : arm64-allmodconfig
4 warnings 0 mismatches : arm-multi_v5_defconfig
7 warnings 0 mismatches : arm-multi_v7_defconfig
4 warnings 0 mismatches : x86_64-defconfig
30 warnings 0 mismatches : arm-allmodconfig
2 warnings 0 mismatches : arm64-defconfig
-------------------------------------------------------------------------------
Warnings Summary: 35
6 ../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
6 ../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
6 ../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
5 ../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
3 ../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined, evaluates to 0 [-Wundef]
2 ../include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
2 ../fs/nfs/nfs4proc.c:3062:10: warning: switch condition has boolean value [-Wswitch-bool]
2 ../drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
2 ../drivers/net/ethernet/dec/tulip/winbond-840.c:910:2: warning: #warning Processor architecture undefined [-Wcpp]
1 ../include/uapi/linux/swab.h:13:15: warning: integer overflow in expression [-Woverflow]
1 ../include/linux/spinlock.h:253:3: warning: 'flags' may be used uninitialized in this function [-Wmaybe-uninitialized]
1 ../include/linux/kernel.h:708:17: warning: comparison of distinct pointer types lacks a cast
1 ../fs/btrfs/extent_io.c:2166:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/usb/gadget/function/f_ncm.c:203:0: warning: "NCAPS" redefined
1 ../drivers/thermal/x86_pkg_temp_thermal.c:414:1: warning: no return statement in function returning non-void [-Wreturn-type]
1 ../drivers/staging/vt6655/device_main.c:2997:1: warning: the frame size of 1312 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 ../drivers/staging/bcm/CmHost.c:1564:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/staging/bcm/CmHost.c:1546:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/staging/bcm/CmHost.c:1503:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/pci/host/pcie-xilinx.c:154:22: warning: format '%d' expects argument of type 'int', but argument 4 has type 'long unsigned int' [-Wformat=]
1 ../drivers/net/wireless/brcm80211/brcmfmac/fwsignal.c:1478:8: warning: 'skb' may be used uninitialized in this function [-Wmaybe-uninitialized]
1 ../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:467:46: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:307:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 ../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:303:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 ../drivers/net/ethernet/dec/tulip/tulip_core.c:101:2: warning: #warning Processor architecture undefined! [-Wcpp]
1 ../drivers/mtd/chips/cfi_cmdset_0020.c:651:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 ../drivers/iommu/intel-iommu.c:1749:25: warning: unused variable 'drhd' [-Wunused-variable]
1 ../drivers/infiniband/ulp/iser/iser_verbs.c:1206:14: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/infiniband/ulp/iser/iser_verbs.c:1201:14: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/infiniband/ulp/iser/iser_verbs.c:1175:31: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/infiniband/ulp/iser/iser_verbs.c:1174:33: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/infiniband/hw/qib/qib_qp.c:44:0: warning: "BITS_PER_PAGE" redefined
1 ../drivers/block/drbd/drbd_bitmap.c:483:0: warning: "BITS_PER_PAGE_MASK" redefined
1 ../drivers/block/drbd/drbd_bitmap.c:482:0: warning: "BITS_PER_PAGE" redefined
1 ../arch/arm/mach-cns3xxx/pcie.c:313:1: warning: the frame size of 1080 bytes is larger than 1024 bytes [-Wframe-larger-than=]
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm64-allmodconfig : PASS, 0 errors, 13 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined, evaluates to 0 [-Wundef]
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined, evaluates to 0 [-Wundef]
../drivers/block/drbd/drbd_bitmap.c:482:0: warning: "BITS_PER_PAGE" redefined
../drivers/block/drbd/drbd_bitmap.c:483:0: warning: "BITS_PER_PAGE_MASK" redefined
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../drivers/infiniband/hw/qib/qib_qp.c:44:0: warning: "BITS_PER_PAGE" redefined
../drivers/staging/bcm/CmHost.c:1503:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/staging/bcm/CmHost.c:1546:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/staging/bcm/CmHost.c:1564:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/net/ethernet/dec/tulip/winbond-840.c:910:2: warning: #warning Processor architecture undefined [-Wcpp]
../drivers/net/ethernet/dec/tulip/tulip_core.c:101:2: warning: #warning Processor architecture undefined! [-Wcpp]
../drivers/usb/gadget/function/f_ncm.c:203:0: warning: "NCAPS" redefined
../drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
-------------------------------------------------------------------------------
arm-multi_v5_defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 7 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../fs/nfs/nfs4proc.c:3062:10: warning: switch condition has boolean value [-Wswitch-bool]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../include/linux/spinlock.h:253:3: warning: 'flags' may be used uninitialized in this function [-Wmaybe-uninitialized]
../drivers/net/wireless/brcm80211/brcmfmac/fwsignal.c:1478:8: warning: 'skb' may be used uninitialized in this function [-Wmaybe-uninitialized]
-------------------------------------------------------------------------------
x86_64-defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../drivers/iommu/intel-iommu.c:1749:25: warning: unused variable 'drhd' [-Wunused-variable]
../drivers/thermal/x86_pkg_temp_thermal.c:414:1: warning: no return statement in function returning non-void [-Wreturn-type]
-------------------------------------------------------------------------------
arm-allmodconfig : PASS, 0 errors, 30 warnings, 0 section mismatches
Warnings:
../arch/arm/mach-cns3xxx/pcie.c:313:1: warning: the frame size of 1080 bytes is larger than 1024 bytes [-Wframe-larger-than=]
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../fs/btrfs/extent_io.c:2166:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../fs/nfs/nfs4proc.c:3062:10: warning: switch condition has boolean value [-Wswitch-bool]
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../include/linux/kernel.h:708:17: warning: comparison of distinct pointer types lacks a cast
../drivers/infiniband/ulp/iser/iser_verbs.c:1174:33: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/infiniband/ulp/iser/iser_verbs.c:1175:31: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/infiniband/ulp/iser/iser_verbs.c:1201:14: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/infiniband/ulp/iser/iser_verbs.c:1206:14: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
../include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
../drivers/mtd/chips/cfi_cmdset_0020.c:651:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=]
../drivers/pci/host/pcie-xilinx.c:154:22: warning: format '%d' expects argument of type 'int', but argument 4 has type 'long unsigned int' [-Wformat=]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../include/uapi/linux/swab.h:13:15: warning: integer overflow in expression [-Woverflow]
../drivers/net/ethernet/dec/tulip/winbond-840.c:910:2: warning: #warning Processor architecture undefined [-Wcpp]
../drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:303:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:307:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:467:46: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../drivers/staging/vt6655/device_main.c:2997:1: warning: the frame size of 1312 bytes is larger than 1024 bytes [-Wframe-larger-than=]
-------------------------------------------------------------------------------
arm64-defconfig : PASS, 0 errors, 2 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined, evaluates to 0 [-Wundef]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
x86_64-allnoconfig
arm64-allnoconfig
arm-allnoconfig
Tree/Branch: next-20170310
Git describe: next-20170310
Commit: 5be4921c99 Add linux-next specific files for 20170310
Build Time: 195 min 10 sec
Passed: 10 / 10 (100.00 %)
Failed: 0 / 10 ( 0.00 %)
Errors: 0
Warnings: 7
Section Mismatches: 0
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
1 warnings 0 mismatches : arm64-allnoconfig
4 warnings 0 mismatches : arm64-allmodconfig
4 warnings 0 mismatches : arm-multi_v5_defconfig
4 warnings 0 mismatches : arm-multi_v7_defconfig
2 warnings 0 mismatches : x86_64-defconfig
7 warnings 0 mismatches : arm-allmodconfig
1 warnings 0 mismatches : arm-allnoconfig
1 warnings 0 mismatches : arm-multi_v4t_defconfig
3 warnings 0 mismatches : arm64-defconfig
-------------------------------------------------------------------------------
Warnings Summary: 7
13 <stdin>:1325:2: warning: #warning syscall statx not implemented [-Wcpp]
4 ../include/drm/drm_pci.h:76:64: warning: its scope is only this definition or declaration, which is probably not what you want
4 ../include/drm/drm_pci.h:76:64: warning: 'struct platform_device' declared inside parameter list
2 ../include/drm/drm_pci.h:76:64: warning: 'struct platform_device' declared inside parameter list will not be visible outside of this definition or declaration
2 ../drivers/staging/vc04_services/bcm2835-camera/bcm2835-camera.h:128:3: warning: the address of '__func__' will always evaluate as 'true' [-Waddress]
1 ../sound/soc/codecs/cs35l35.c:1371:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
1 ../drivers/staging/vc04_services/bcm2835-camera/bcm2835-camera.h:138:3: warning: the address of '__func__' will always evaluate as 'true' [-Waddress]
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm64-allnoconfig : PASS, 0 errors, 1 warnings, 0 section mismatches
Warnings:
<stdin>:1325:2: warning: #warning syscall statx not implemented [-Wcpp]
-------------------------------------------------------------------------------
arm64-allmodconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
<stdin>:1325:2: warning: #warning syscall statx not implemented [-Wcpp]
../sound/soc/codecs/cs35l35.c:1371:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
../include/drm/drm_pci.h:76:64: warning: 'struct platform_device' declared inside parameter list will not be visible outside of this definition or declaration
<stdin>:1325:2: warning: #warning syscall statx not implemented [-Wcpp]
-------------------------------------------------------------------------------
arm-multi_v5_defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
<stdin>:1325:2: warning: #warning syscall statx not implemented [-Wcpp]
../include/drm/drm_pci.h:76:64: warning: 'struct platform_device' declared inside parameter list
../include/drm/drm_pci.h:76:64: warning: its scope is only this definition or declaration, which is probably not what you want
<stdin>:1325:2: warning: #warning syscall statx not implemented [-Wcpp]
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
<stdin>:1325:2: warning: #warning syscall statx not implemented [-Wcpp]
../include/drm/drm_pci.h:76:64: warning: 'struct platform_device' declared inside parameter list
../include/drm/drm_pci.h:76:64: warning: its scope is only this definition or declaration, which is probably not what you want
<stdin>:1325:2: warning: #warning syscall statx not implemented [-Wcpp]
-------------------------------------------------------------------------------
x86_64-defconfig : PASS, 0 errors, 2 warnings, 0 section mismatches
Warnings:
../include/drm/drm_pci.h:76:64: warning: 'struct platform_device' declared inside parameter list
../include/drm/drm_pci.h:76:64: warning: its scope is only this definition or declaration, which is probably not what you want
-------------------------------------------------------------------------------
arm-allmodconfig : PASS, 0 errors, 7 warnings, 0 section mismatches
Warnings:
<stdin>:1325:2: warning: #warning syscall statx not implemented [-Wcpp]
../include/drm/drm_pci.h:76:64: warning: 'struct platform_device' declared inside parameter list
../include/drm/drm_pci.h:76:64: warning: its scope is only this definition or declaration, which is probably not what you want
../drivers/staging/vc04_services/bcm2835-camera/bcm2835-camera.h:138:3: warning: the address of '__func__' will always evaluate as 'true' [-Waddress]
../drivers/staging/vc04_services/bcm2835-camera/bcm2835-camera.h:128:3: warning: the address of '__func__' will always evaluate as 'true' [-Waddress]
../drivers/staging/vc04_services/bcm2835-camera/bcm2835-camera.h:128:3: warning: the address of '__func__' will always evaluate as 'true' [-Waddress]
<stdin>:1325:2: warning: #warning syscall statx not implemented [-Wcpp]
-------------------------------------------------------------------------------
arm-allnoconfig : PASS, 0 errors, 1 warnings, 0 section mismatches
Warnings:
<stdin>:1325:2: warning: #warning syscall statx not implemented [-Wcpp]
-------------------------------------------------------------------------------
arm-multi_v4t_defconfig : PASS, 0 errors, 1 warnings, 0 section mismatches
Warnings:
<stdin>:1325:2: warning: #warning syscall statx not implemented [-Wcpp]
-------------------------------------------------------------------------------
arm64-defconfig : PASS, 0 errors, 3 warnings, 0 section mismatches
Warnings:
<stdin>:1325:2: warning: #warning syscall statx not implemented [-Wcpp]
../include/drm/drm_pci.h:76:64: warning: 'struct platform_device' declared inside parameter list will not be visible outside of this definition or declaration
<stdin>:1325:2: warning: #warning syscall statx not implemented [-Wcpp]
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
x86_64-allnoconfig
Tree/Branch: v3.2.86-rt124
Git describe: v3.2.86-rt124
Commit: b48de9f0a9 Linux 3.2.86-rt124
Build Time: 0 min 3 sec
Passed: 2 / 4 ( 50.00 %)
Failed: 2 / 4 ( 50.00 %)
Errors: 4
Warnings: 34
Section Mismatches: 0
Failed defconfigs:
arm-allmodconfig
arm-allnoconfig
Errors:
arm-allnoconfig
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/div64.h:77:7: error: '__LINUX_ARM_ARCH__' undeclared (first use in this function)
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/glue-cache.h:129:2: error: #error Unknown cache maintenance model
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/glue-df.h:107:2: error: #error Unknown data abort handler type
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/glue-pf.h:54:2: error: #error Unknown prefetch abort handler type
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
9 warnings 0 mismatches : x86_64-allnoconfig
2 warnings 0 mismatches : arm-allmodconfig
19 warnings 0 mismatches : arm-allnoconfig
11 warnings 0 mismatches : x86_64-defconfig
-------------------------------------------------------------------------------
Errors summary: 4
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/glue-pf.h:54:2: error: #error Unknown prefetch abort handler type
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/glue-df.h:107:2: error: #error Unknown data abort handler type
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/glue-cache.h:129:2: error: #error Unknown cache maintenance model
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/div64.h:77:7: error: '__LINUX_ARM_ARCH__' undeclared (first use in this function)
Warnings Summary: 34
2 /home/broonie/build/linux-stable-rt/mm/slub.c:4473:11: warning: 'x' may be used uninitialized in this function [-Wmaybe-uninitialized]
2 /home/broonie/build/linux-stable-rt/mm/slub.c:1291:6: warning: unused variable 'idx' [-Wunused-variable]
2 /home/broonie/build/linux-stable-rt/mm/slub.c:1291:11: warning: unused variable 'order' [-Wunused-variable]
2 /home/broonie/build/linux-stable-rt/fs/namespace.c:2561:8: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
2 /home/broonie/build/linux-stable-rt/fs/namespace.c:2561:8: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
2 /home/broonie/build/linux-stable-rt/drivers/usb/host/ohci-dbg.c:77:11: warning: the comparison will always evaluate as 'true' for the address of 'next' will never be NULL [-Waddress]
2 .config:27:warning: symbol value '' invalid for PHYS_OFFSET
1 /home/broonie/build/linux-stable-rt/kernel/sched.c:1895:13: warning: 'update_idle_cpu_load' declared 'static' but never defined [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/include/linux/blkdev.h:1291:39: warning: statement with no effect [-Wunused-value]
1 /home/broonie/build/linux-stable-rt/fs/compat_ioctl.c:611:38: warning: typedef 'SS' locally defined but not used [-Wunused-local-typedefs]
1 /home/broonie/build/linux-stable-rt/drivers/gpu/drm/i915/i915_drv.c:975:0: warning: "NEEDS_FORCE_WAKE" redefined
1 /home/broonie/build/linux-stable-rt/drivers/acpi/acpica/nsrepair.c:199:21: warning: 'new_object' may be used uninitialized in this function [-Wmaybe-uninitialized]
1 /home/broonie/build/linux-stable-rt/arch/x86/kernel/quirks.c:407:21: warning: 'val' may be used uninitialized in this function [-Wmaybe-uninitialized]
1 /home/broonie/build/linux-stable-rt/arch/x86/kernel/quirks.c:367:4: warning: 'd' may be used uninitialized in this function [-Wmaybe-uninitialized]
1 /home/broonie/build/linux-stable-rt/arch/x86/kernel/quirks.c:361:4: warning: 'b' is used uninitialized in this function [-Wuninitialized]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/system.h:342:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/system.h:272:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/system.h:265:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/system.h:131:35: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/system.h:127:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/system.h:121:3: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/system.h:120:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/system.h:114:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/swab.h:25:28: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/processor.h:82:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/processor.h:102:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/irqflags.h:11:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/fpstate.h:32:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/cachetype.h:33:7: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/cachetype.h:28:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/cacheflush.h:196:7: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/cacheflush.h:194:7: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/bitops.h:217:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
1 /home/broonie/build/linux-stable-rt/arch/arm/include/asm/atomic.h:30:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
x86_64-allnoconfig : PASS, 0 errors, 9 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/kernel/sched.c:1895:13: warning: 'update_idle_cpu_load' declared 'static' but never defined [-Wunused-function]
/home/broonie/build/linux-stable-rt/arch/x86/kernel/quirks.c:361:4: warning: 'b' is used uninitialized in this function [-Wuninitialized]
/home/broonie/build/linux-stable-rt/arch/x86/kernel/quirks.c:367:4: warning: 'd' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/arch/x86/kernel/quirks.c:407:21: warning: 'val' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2561:8: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2561:8: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/mm/slub.c:1291:11: warning: unused variable 'order' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/mm/slub.c:1291:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/mm/slub.c:4473:11: warning: 'x' may be used uninitialized in this function [-Wmaybe-uninitialized]
-------------------------------------------------------------------------------
arm-allmodconfig : FAIL, 0 errors, 2 warnings, 0 section mismatches
Warnings:
.config:27:warning: symbol value '' invalid for PHYS_OFFSET
.config:27:warning: symbol value '' invalid for PHYS_OFFSET
-------------------------------------------------------------------------------
arm-allnoconfig : FAIL, 4 errors, 19 warnings, 0 section mismatches
Errors:
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/div64.h:77:7: error: '__LINUX_ARM_ARCH__' undeclared (first use in this function)
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/glue-cache.h:129:2: error: #error Unknown cache maintenance model
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/glue-df.h:107:2: error: #error Unknown data abort handler type
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/glue-pf.h:54:2: error: #error Unknown prefetch abort handler type
Warnings:
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/irqflags.h:11:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/system.h:114:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/system.h:120:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/system.h:121:3: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/system.h:127:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/system.h:131:35: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/system.h:265:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/system.h:272:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/system.h:342:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/bitops.h:217:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/swab.h:25:28: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/fpstate.h:32:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/processor.h:82:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/processor.h:102:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/atomic.h:30:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/cachetype.h:28:5: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/cachetype.h:33:7: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/cacheflush.h:194:7: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
/home/broonie/build/linux-stable-rt/arch/arm/include/asm/cacheflush.h:196:7: warning: "__LINUX_ARM_ARCH__" is not defined [-Wundef]
-------------------------------------------------------------------------------
x86_64-defconfig : PASS, 0 errors, 11 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/fs/namespace.c:2561:8: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2561:8: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/mm/slub.c:1291:11: warning: unused variable 'order' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/mm/slub.c:1291:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/mm/slub.c:4473:11: warning: 'x' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/drivers/acpi/acpica/nsrepair.c:199:21: warning: 'new_object' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/compat_ioctl.c:611:38: warning: typedef 'SS' locally defined but not used [-Wunused-local-typedefs]
/home/broonie/build/linux-stable-rt/drivers/gpu/drm/i915/i915_drv.c:975:0: warning: "NEEDS_FORCE_WAKE" redefined
/home/broonie/build/linux-stable-rt/include/linux/blkdev.h:1291:39: warning: statement with no effect [-Wunused-value]
/home/broonie/build/linux-stable-rt/drivers/usb/host/ohci-dbg.c:77:11: warning: the comparison will always evaluate as 'true' for the address of 'next' will never be NULL [-Waddress]
/home/broonie/build/linux-stable-rt/drivers/usb/host/ohci-dbg.c:77:11: warning: the comparison will always evaluate as 'true' for the address of 'next' will never be NULL [-Waddress]
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
Tree/Branch: v3.18.48-rt53
Git describe: v3.18.48-rt53
Commit: e433cbc1fa Linux 3.18.48-rt53
Build Time: 122 min 48 sec
Passed: 9 / 9 (100.00 %)
Failed: 0 / 9 ( 0.00 %)
Errors: 0
Warnings: 35
Section Mismatches: 0
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
13 warnings 0 mismatches : arm64-allmodconfig
4 warnings 0 mismatches : arm-multi_v5_defconfig
7 warnings 0 mismatches : arm-multi_v7_defconfig
4 warnings 0 mismatches : x86_64-defconfig
30 warnings 0 mismatches : arm-allmodconfig
2 warnings 0 mismatches : arm64-defconfig
-------------------------------------------------------------------------------
Warnings Summary: 35
6 ../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
6 ../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
6 ../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
5 ../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
3 ../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined, evaluates to 0 [-Wundef]
2 ../include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
2 ../fs/nfs/nfs4proc.c:3062:10: warning: switch condition has boolean value [-Wswitch-bool]
2 ../drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
2 ../drivers/net/ethernet/dec/tulip/winbond-840.c:910:2: warning: #warning Processor architecture undefined [-Wcpp]
1 ../include/uapi/linux/swab.h:13:15: warning: integer overflow in expression [-Woverflow]
1 ../include/linux/spinlock.h:253:3: warning: 'flags' may be used uninitialized in this function [-Wmaybe-uninitialized]
1 ../include/linux/kernel.h:708:17: warning: comparison of distinct pointer types lacks a cast
1 ../fs/btrfs/extent_io.c:2166:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/usb/gadget/function/f_ncm.c:203:0: warning: "NCAPS" redefined
1 ../drivers/thermal/x86_pkg_temp_thermal.c:414:1: warning: no return statement in function returning non-void [-Wreturn-type]
1 ../drivers/staging/vt6655/device_main.c:2997:1: warning: the frame size of 1312 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 ../drivers/staging/bcm/CmHost.c:1564:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/staging/bcm/CmHost.c:1546:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/staging/bcm/CmHost.c:1503:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/pci/host/pcie-xilinx.c:154:22: warning: format '%d' expects argument of type 'int', but argument 4 has type 'long unsigned int' [-Wformat=]
1 ../drivers/net/wireless/brcm80211/brcmfmac/fwsignal.c:1478:8: warning: 'skb' may be used uninitialized in this function [-Wmaybe-uninitialized]
1 ../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:467:46: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:307:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 ../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:303:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 ../drivers/net/ethernet/dec/tulip/tulip_core.c:101:2: warning: #warning Processor architecture undefined! [-Wcpp]
1 ../drivers/mtd/chips/cfi_cmdset_0020.c:651:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 ../drivers/iommu/intel-iommu.c:1749:25: warning: unused variable 'drhd' [-Wunused-variable]
1 ../drivers/infiniband/ulp/iser/iser_verbs.c:1206:14: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/infiniband/ulp/iser/iser_verbs.c:1201:14: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/infiniband/ulp/iser/iser_verbs.c:1175:31: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/infiniband/ulp/iser/iser_verbs.c:1174:33: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/infiniband/hw/qib/qib_qp.c:44:0: warning: "BITS_PER_PAGE" redefined
1 ../drivers/block/drbd/drbd_bitmap.c:483:0: warning: "BITS_PER_PAGE_MASK" redefined
1 ../drivers/block/drbd/drbd_bitmap.c:482:0: warning: "BITS_PER_PAGE" redefined
1 ../arch/arm/mach-cns3xxx/pcie.c:313:1: warning: the frame size of 1080 bytes is larger than 1024 bytes [-Wframe-larger-than=]
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm64-allmodconfig : PASS, 0 errors, 13 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined, evaluates to 0 [-Wundef]
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined, evaluates to 0 [-Wundef]
../drivers/block/drbd/drbd_bitmap.c:482:0: warning: "BITS_PER_PAGE" redefined
../drivers/block/drbd/drbd_bitmap.c:483:0: warning: "BITS_PER_PAGE_MASK" redefined
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../drivers/infiniband/hw/qib/qib_qp.c:44:0: warning: "BITS_PER_PAGE" redefined
../drivers/net/ethernet/dec/tulip/winbond-840.c:910:2: warning: #warning Processor architecture undefined [-Wcpp]
../drivers/net/ethernet/dec/tulip/tulip_core.c:101:2: warning: #warning Processor architecture undefined! [-Wcpp]
../drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
../drivers/staging/bcm/CmHost.c:1503:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/staging/bcm/CmHost.c:1546:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/staging/bcm/CmHost.c:1564:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/usb/gadget/function/f_ncm.c:203:0: warning: "NCAPS" redefined
-------------------------------------------------------------------------------
arm-multi_v5_defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 7 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../fs/nfs/nfs4proc.c:3062:10: warning: switch condition has boolean value [-Wswitch-bool]
../drivers/net/wireless/brcm80211/brcmfmac/fwsignal.c:1478:8: warning: 'skb' may be used uninitialized in this function [-Wmaybe-uninitialized]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../include/linux/spinlock.h:253:3: warning: 'flags' may be used uninitialized in this function [-Wmaybe-uninitialized]
-------------------------------------------------------------------------------
x86_64-defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../drivers/iommu/intel-iommu.c:1749:25: warning: unused variable 'drhd' [-Wunused-variable]
../drivers/thermal/x86_pkg_temp_thermal.c:414:1: warning: no return statement in function returning non-void [-Wreturn-type]
-------------------------------------------------------------------------------
arm-allmodconfig : PASS, 0 errors, 30 warnings, 0 section mismatches
Warnings:
../arch/arm/mach-cns3xxx/pcie.c:313:1: warning: the frame size of 1080 bytes is larger than 1024 bytes [-Wframe-larger-than=]
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../fs/btrfs/extent_io.c:2166:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../fs/nfs/nfs4proc.c:3062:10: warning: switch condition has boolean value [-Wswitch-bool]
../drivers/infiniband/ulp/iser/iser_verbs.c:1174:33: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/infiniband/ulp/iser/iser_verbs.c:1175:31: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/infiniband/ulp/iser/iser_verbs.c:1201:14: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/infiniband/ulp/iser/iser_verbs.c:1206:14: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../include/linux/kernel.h:708:17: warning: comparison of distinct pointer types lacks a cast
../include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
../include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
../drivers/mtd/chips/cfi_cmdset_0020.c:651:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=]
../drivers/pci/host/pcie-xilinx.c:154:22: warning: format '%d' expects argument of type 'int', but argument 4 has type 'long unsigned int' [-Wformat=]
../drivers/net/ethernet/dec/tulip/winbond-840.c:910:2: warning: #warning Processor architecture undefined [-Wcpp]
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:303:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:307:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:467:46: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../include/uapi/linux/swab.h:13:15: warning: integer overflow in expression [-Woverflow]
../drivers/staging/vt6655/device_main.c:2997:1: warning: the frame size of 1312 bytes is larger than 1024 bytes [-Wframe-larger-than=]
-------------------------------------------------------------------------------
arm64-defconfig : PASS, 0 errors, 2 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined, evaluates to 0 [-Wundef]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
x86_64-allnoconfig
arm64-allnoconfig
arm-allnoconfig
Tree/Branch: v3.10.105-rt119
Git describe: v3.10.105-rt119
Commit: 62acb48c97 Linux 3.10.105-rt119
Build Time: 42 min 0 sec
Passed: 7 / 8 ( 87.50 %)
Failed: 1 / 8 ( 12.50 %)
Errors: 1
Warnings: 181
Section Mismatches: 0
Failed defconfigs:
arm64-allmodconfig
Errors:
arm64-allmodconfig
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
6 warnings 0 mismatches : arm64-allnoconfig
130 warnings 0 mismatches : arm64-allmodconfig
7 warnings 0 mismatches : arm-multi_v7_defconfig
4 warnings 0 mismatches : x86_64-defconfig
56 warnings 0 mismatches : arm-allmodconfig
3 warnings 0 mismatches : arm-allnoconfig
3 warnings 0 mismatches : x86_64-allnoconfig
17 warnings 0 mismatches : arm64-defconfig
-------------------------------------------------------------------------------
Errors summary: 1
9 /home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
Warnings Summary: 181
8 /home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
5 /home/broonie/build/linux-stable-rt/net/core/sysctl_net_core.c:24:12: warning: 'one' defined but not used [-Wunused-variable]
4 /home/broonie/build/linux-stable-rt/scripts/sortextable.h:158:3: warning: 'relocs_size' may be used uninitialized in this function [-Wmaybe-uninitialized]
4 /home/broonie/build/linux-stable-rt/include/linux/ftrace.h:617:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
4 /home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:162:3: warning: value computed is not used [-Wunused-value]
3 /home/broonie/build/linux-stable-rt/mm/swap.c:47:30: warning: 'swapvec_lock' defined but not used [-Wunused-const-variable=]
3 /home/broonie/build/linux-stable-rt/mm/swap.c:46:30: warning: 'rotate_lock' defined but not used [-Wunused-const-variable=]
3 /home/broonie/build/linux-stable-rt/kernel/workqueue.c:319:30: warning: 'pendingb_lock' defined but not used [-Wunused-const-variable=]
3 /home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
3 /home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
3 /home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:74:3: warning: value computed is not used [-Wunused-value]
2 /home/broonie/build/linux-stable-rt/net/packet/af_packet.c:3674:4: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
2 /home/broonie/build/linux-stable-rt/net/ipv4/tcp_ipv4.c:593:30: warning: 'tcp_sk_lock' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/ipv4/icmp.c:208:30: warning: 'icmp_sk_lock' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/core/skbuff.c:343:30: warning: 'netdev_alloc_lock' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/core/rtnetlink.c:1142:32: warning: 'ifla_vf_policy' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/core/rtnetlink.c:1138:32: warning: 'ifla_vfinfo_policy' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/core/net-sysfs.c:30:19: warning: 'fmt_long_hex' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
2 /home/broonie/build/linux-stable-rt/fs/namespace.c:2590:6: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
2 /home/broonie/build/linux-stable-rt/fs/namespace.c:2590:6: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
2 /home/broonie/build/linux-stable-rt/drivers/tty/sysrq.c:907:33: warning: array subscript is above array bounds [-Warray-bounds]
2 /home/broonie/build/linux-stable-rt/drivers/net/wireless/iwlwifi/mvm/fw.c:90:64: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
2 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/smsc/smc91x.c:1899:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:526:38: warning: 'wm8991_dapm_rxvoice_controls' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:126:27: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:106:27: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:532:38: warning: 'wm8990_dapm_rxvoice_controls' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:126:35: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:118:35: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8988.c:273:30: warning: 'wm8988_rline_enum' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8974.c:202:38: warning: 'wm8974_mic_boost_controls' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8974.c:198:38: warning: 'wm8974_aux_boost_controls' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8900.c:451:38: warning: 'wm8900_dapm_routput2_control' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8900.c:448:38: warning: 'wm8900_dapm_loutput2_control' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8737.c:116:30: warning: 'high_3d' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/tlv320aic23.c:56:30: warning: 'tlv320aic23_rec_src' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/ml26124.c:71:35: warning: 'ngth' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:868:30: warning: 'max98090_pa2en_enum' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:864:30: warning: 'max98090_pa1en_enum' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:389:35: warning: 'max98090_alc_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:387:35: warning: 'max98090_sidetone_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:2354:12: warning: 'max98090_runtime_suspend' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:2341:12: warning: 'max98090_runtime_resume' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/cs42l73.c:383:38: warning: 'xsp_output_mux' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/cs42l73.c:380:38: warning: 'vsp_output_mux' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/wireless/nl80211.c:417:1: warning: 'nl80211_wowlan_tcp_policy' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/wireless/nl80211.c:404:1: warning: 'nl80211_wowlan_policy' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/sunrpc/xprtrdma/verbs.c:1774:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/net/sched/sch_choke.c:595:37: warning: 'choke_class_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/netfilter/xt_recent.c:103:37: warning: 'recent_old_fops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/mac80211/debugfs_sta.c:35:37: warning: 'sta_aid_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/mac80211/debugfs.c:70:23: warning: 'rate_ctrl_alg_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/ipv4/arp.c:152:31: warning: 'arp_broken_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/ieee802154/6lowpan.c:89:17: warning: 'lowpan_unc_ctxconf' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/dcb/dcbnl.c:183:32: warning: 'dcbnl_ieee_app' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/caif/cfpkt_skbuff.c:296:3: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/kernel/modsign_pubkey.c:28:30: warning: 'annoy_ccache' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/kernel/auditfilter.c:426:3: warning: this decimal constant is unsigned only in ISO C90
1 /home/broonie/build/linux-stable-rt/include/linux/spinlock.h:237:3: warning: 'flags' may be used uninitialized in this function [-Wmaybe-uninitialized]
1 /home/broonie/build/linux-stable-rt/include/linux/list.h:457:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/include/linux/kernel.h:677:17: warning: comparison of distinct pointer types lacks a cast
1 /home/broonie/build/linux-stable-rt/include/linux/kern_levels.h:4:18: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'resource_size_t {aka long long unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/include/linux/ftrace.h:618:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
1 /home/broonie/build/linux-stable-rt/include/linux/clocksource.h:345:20: warning: comparison of distinct pointer types lacks a cast
1 /home/broonie/build/linux-stable-rt/fs/ncpfs/dir.c:854:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/fs/cifs/netmisc.c:133:40: warning: 'mapping_table_ERRHRD' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/fs/cifs/cifsacl.c:43:30: warning: 'sid_user' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/fs/afs/cmservice.c:78:35: warning: 'afs_SRXCBProbeUuid' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/s6e63m0.c:331:29: warning: 'seq_elvss_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/s6e63m0.c:317:29: warning: 'seq_acl_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/lms501kf03.c:96:28: warning: 'seq_up_dn' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/lms501kf03.c:100:28: warning: 'seq_sleep_in' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:92:29: warning: 'seq_swreset' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:414:29: warning: 'seq_el_on' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:402:29: warning: 'seq_els_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:390:29: warning: 'seq_gls_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:378:29: warning: 'seq_sd_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:366:29: warning: 'seq_gam_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:356:29: warning: 'seq_vbl_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:346:29: warning: 'seq_vbh_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:334:29: warning: 'seq_vint_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:324:29: warning: 'seq_vmos_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:314:29: warning: 'seq_vgl_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:304:29: warning: 'seq_vgh_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:294:29: warning: 'seq_vreg1_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:284:29: warning: 'seq_vl3_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:274:29: warning: 'seq_vci1_2nd_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:264:29: warning: 'seq_vl2_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:254:29: warning: 'seq_vl1_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:244:29: warning: 'seq_vci1_1st_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:212:29: warning: 'seq_pwr_ctrl' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:187:29: warning: 'seq_apon' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/aty/radeon_pm.c:1718:13: warning: 'radeon_reinitialize_M10' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/usb/host/xhci.c:3603:17: warning: unused variable 'dev' [-Wunused-variable]
1 /home/broonie/build/linux-stable-rt/drivers/usb/host/xhci.c:3517:17: warning: unused variable 'dev' [-Wunused-variable]
1 /home/broonie/build/linux-stable-rt/drivers/usb/gadget/nokia.c:57:19: warning: 'product_nokia' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/usb/gadget/mv_udc_core.c:62:19: warning: 'driver_desc' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/usb/gadget/mv_u3d_core.c:39:19: warning: 'driver_desc' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/usb/gadget/gmidi.c:47:19: warning: 'shortname' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/wlan-ng/prism2fw.c:795:1: warning: the frame size of 1072 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/vt6655/iwctl.c:758:1: warning: the frame size of 1280 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/vt6655/device_main.c:3257:1: warning: the frame size of 1864 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/sm7xxfb/sm7xxfb.c:117:19: warning: 'sm7xx_vga_setup' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/staging/panel/panel.c:1804:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/drivers/staging/iio/adc/ad7192.c:237:3: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/drivers/spi/spi-pl022.c:281:31: warning: large integer implicitly truncated to unsigned type [-Woverflow]
1 /home/broonie/build/linux-stable-rt/drivers/spi/spi-gpio.c:255:8: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/pm8001/pm8001_init.c:427:5: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:8517:5: warning: case value '257' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:8510:5: warning: case value '513' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:7901:5: warning: case value '257' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:7898:5: warning: case value '513' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
1 /home/broonie/build/linux-stable-rt/drivers/regulator/tps62360-regulator.c:364:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/regulator/pcap-regulator.c:93:27: warning: 'SW3_table' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/power/twl4030_charger.c:192:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/power/pm2301_charger.c:725:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/power/ab8500_charger.c:1558:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/power/ab8500_charger.c:1389:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/pinctrl/pinctrl-bcm2835.c:1053:2: warning: ignoring return value of 'gpiochip_remove', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/pinctrl/pinctrl-bcm2835.c:1036:3: warning: ignoring return value of 'gpiochip_remove', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ti/wlcore/spi.c:321:1: warning: the frame size of 8688 bytes is larger than 2048 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/rtlwifi/efuse.c:38:31: warning: 'RTL8712_SDIO_EFUSE_TABLE' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/rtlwifi/efuse.c:34:17: warning: 'MAX_PGPKT_SIZE' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/libertas_tf/main.c:30:19: warning: 'lbtf_driver_version' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9298:18: warning: 'papd_cal_scalars_tbl_core1_rev3' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9231:18: warning: 'papd_comp_epsilon_tbl_core1_rev3' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9164:18: warning: 'papd_cal_scalars_tbl_core0_rev3' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9097:18: warning: 'papd_comp_epsilon_tbl_core0_rev3' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_lcn.c:1523:33: warning: 'dot11lcnphytbl_rx_gain_info_rev1' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c:526:19: warning: 'retry_limit' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmfmac/dhd_common.c:36:19: warning: 'brcmf_version' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:41:18: warning: 'm2ThreshExt_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:40:18: warning: 'm1ThreshExt_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:39:18: warning: 'm2ThreshLowExt_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:38:18: warning: 'm1ThreshLowExt_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:37:18: warning: 'm2CountThrLow_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:36:18: warning: 'm2CountThr_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:35:18: warning: 'm2Thresh_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:34:18: warning: 'm1Thresh_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:33:18: warning: 'm2ThreshLow_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:32:18: warning: 'm1ThreshLow_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/sfc/selftest.c:389:9: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
1 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/neterion/vxge/vxge-main.c:2143:13: warning: 'adaptive_coalesce_rx_interrupts' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/neterion/vxge/vxge-main.c:2115:13: warning: 'adaptive_coalesce_tx_interrupts' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/dec/tulip/winbond-840.c:911:2: warning: #warning Processor architecture undefined [-Wcpp]
1 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/amd/nmclan_cs.c:625:3: warning: 'pcmcia_request_exclusive_irq' is deprecated [-Wdeprecated-declarations]
1 /home/broonie/build/linux-stable-rt/drivers/mtd/chips/cfi_cmdset_0020.c:654:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/mmc/host/tmio_mmc_pio.c:798:3: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/misc/lkdtm.c:276:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/misc/bh1770glc.c:184:17: warning: 'prox_curr_ma' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/misc/apds990x.c:191:17: warning: 'ir_currents' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/mfd/tps65217.c:173:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/media/platform/omap3isp/ispccp2.c:167:3: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/media/platform/coda.c:952:40: warning: array subscript is above array bounds [-Warray-bounds]
1 /home/broonie/build/linux-stable-rt/drivers/media/platform/coda.c:944:39: warning: array subscript is above array bounds [-Warray-bounds]
1 /home/broonie/build/linux-stable-rt/drivers/iommu/omap-iommu.c:1245:17: warning: format '%lx' expects argument of type 'long unsigned int', but argument 4 has type 'dma_addr_t {aka unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/iommu/omap-iommu.c:1238:17: warning: format '%lx' expects argument of type 'long unsigned int', but argument 4 has type 'dma_addr_t {aka unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/input/keyboard/cros_ec_keyb.c:210:13: warning: 'cros_ec_keyb_clear_keyboard' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/input/joystick/analog.c:171:2: warning: #warning Precise timer not defined for this architecture. [-Wcpp]
1 /home/broonie/build/linux-stable-rt/drivers/infiniband/hw/nes/nes_hw.c:92:23: warning: 'nes_tcp_state_str' defined but not used [-Wunused-variable]
1 /home/broonie/build/linux-stable-rt/drivers/infiniband/hw/nes/nes_hw.c:81:23: warning: 'nes_iwarp_state_str' defined but not used [-Wunused-variable]
1 /home/broonie/build/linux-stable-rt/drivers/infiniband/hw/cxgb4/mem.c:79:25: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/iio/adc/exynos_adc.c:111:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/iio/adc/ad7793.c:449:37: warning: 'ad7797_attribute_group' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/gpu/drm/exynos/exynos_hdmi.c:1702:2: warning: ignoring return value of 'regulator_bulk_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/gpio/gpio-mcp23s08.c:622:10: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/dma/pl330.c:2379:21: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/dma/pl330.c:2058:5: warning: passing argument 3 of 'dma_alloc_coherent' from incompatible pointer type [-Wincompatible-pointer-types]
1 /home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:920:5: warning: format '%x' expects argument of type 'unsigned int', but argument 5 has type 'size_t {aka long unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:848:31: warning: format '%x' expects argument of type 'unsigned int', but argument 7 has type 'dma_addr_t {aka long long unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:848:31: warning: format '%x' expects argument of type 'unsigned int', but argument 4 has type 'dma_addr_t {aka long long unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/block/mtip32xx/mtip32xx.c:2827:1: warning: the frame size of 1080 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:383:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
1 /home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:380:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
1 /home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:377:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
1 /home/broonie/build/linux-stable-rt/arch/arm/mm/init.c:731:35: warning: passing argument 2 of 'free_reserved_area' makes integer from pointer without a cast [-Wint-conversion]
1 /home/broonie/build/linux-stable-rt/arch/arm/mm/init.c:731:21: warning: passing argument 1 of 'free_reserved_area' makes integer from pointer without a cast [-Wint-conversion]
1 /home/broonie/build/linux-stable-rt/arch/arm/mach-omap2/board-am3517crane.c:113:6: warning: unused variable 'ret' [-Wunused-variable]
1 /home/broonie/build/linux-stable-rt/Documentation/misc-devices/mei/mei-amt-version.c:103:5: warning: 'acmd.fd' is used uninitialized in this function [-Wuninitialized]
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm64-allnoconfig : PASS, 0 errors, 6 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/mm/swap.c:47:30: warning: 'swapvec_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/swap.c:46:30: warning: 'rotate_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/kernel/workqueue.c:319:30: warning: 'pendingb_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
-------------------------------------------------------------------------------
arm64-allmodconfig : FAIL, 9 errors, 130 warnings, 0 section mismatches
Errors:
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
Warnings:
/home/broonie/build/linux-stable-rt/mm/swap.c:47:30: warning: 'swapvec_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/swap.c:46:30: warning: 'rotate_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/kernel/workqueue.c:319:30: warning: 'pendingb_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/fs/afs/cmservice.c:78:35: warning: 'afs_SRXCBProbeUuid' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:74:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:74:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:74:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/include/linux/ftrace.h:617:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable-rt/include/linux/ftrace.h:617:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable-rt/include/linux/ftrace.h:617:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable-rt/include/linux/ftrace.h:618:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable-rt/include/linux/ftrace.h:617:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable-rt/kernel/modsign_pubkey.c:28:30: warning: 'annoy_ccache' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/cs42l73.c:383:38: warning: 'xsp_output_mux' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/cs42l73.c:380:38: warning: 'vsp_output_mux' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:2354:12: warning: 'max98090_runtime_suspend' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:2341:12: warning: 'max98090_runtime_resume' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:868:30: warning: 'max98090_pa2en_enum' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:864:30: warning: 'max98090_pa1en_enum' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:389:35: warning: 'max98090_alc_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:387:35: warning: 'max98090_sidetone_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/ml26124.c:71:35: warning: 'ngth' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:848:31: warning: format '%x' expects argument of type 'unsigned int', but argument 4 has type 'dma_addr_t {aka long long unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:848:31: warning: format '%x' expects argument of type 'unsigned int', but argument 7 has type 'dma_addr_t {aka long long unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:920:5: warning: format '%x' expects argument of type 'unsigned int', but argument 5 has type 'size_t {aka long unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/tlv320aic23.c:56:30: warning: 'tlv320aic23_rec_src' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/dma/pl330.c:2058:5: warning: passing argument 3 of 'dma_alloc_coherent' from incompatible pointer type [-Wincompatible-pointer-types]
/home/broonie/build/linux-stable-rt/drivers/dma/pl330.c:2379:21: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/gpio/gpio-mcp23s08.c:622:10: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8737.c:116:30: warning: 'high_3d' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8900.c:451:38: warning: 'wm8900_dapm_routput2_control' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8900.c:448:38: warning: 'wm8900_dapm_loutput2_control' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/fs/cifs/netmisc.c:133:40: warning: 'mapping_table_ERRHRD' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8974.c:202:38: warning: 'wm8974_mic_boost_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8974.c:198:38: warning: 'wm8974_aux_boost_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8988.c:273:30: warning: 'wm8988_rline_enum' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:532:38: warning: 'wm8990_dapm_rxvoice_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:126:35: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:118:35: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:526:38: warning: 'wm8991_dapm_rxvoice_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:126:27: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:106:27: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/fs/cifs/cifsacl.c:43:30: warning: 'sid_user' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/caif/cfpkt_skbuff.c:296:3: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/net/core/skbuff.c:343:30: warning: 'netdev_alloc_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:162:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/net/core/sysctl_net_core.c:24:12: warning: 'one' defined but not used [-Wunused-variable]
/home/broonie/build/linux-stable-rt/net/core/rtnetlink.c:1142:32: warning: 'ifla_vf_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/core/rtnetlink.c:1138:32: warning: 'ifla_vfinfo_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/dcb/dcbnl.c:183:32: warning: 'dcbnl_ieee_app' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/core/net-sysfs.c:30:19: warning: 'fmt_long_hex' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/iio/adc/exynos_adc.c:111:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/iio/adc/ad7793.c:449:37: warning: 'ad7797_attribute_group' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ieee802154/6lowpan.c:89:17: warning: 'lowpan_unc_ctxconf' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/input/joystick/analog.c:171:2: warning: #warning Precise timer not defined for this architecture. [-Wcpp]
/home/broonie/build/linux-stable-rt/drivers/input/keyboard/cros_ec_keyb.c:210:13: warning: 'cros_ec_keyb_clear_keyboard' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/net/ipv4/tcp_ipv4.c:593:30: warning: 'tcp_sk_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ipv4/icmp.c:208:30: warning: 'icmp_sk_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/fs/ncpfs/dir.c:854:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:162:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/net/mac80211/debugfs.c:70:23: warning: 'rate_ctrl_alg_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/mac80211/debugfs_sta.c:35:37: warning: 'sta_aid_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/packet/af_packet.c:3674:4: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/mfd/tps65217.c:173:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/misc/bh1770glc.c:184:17: warning: 'prox_curr_ma' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/misc/apds990x.c:191:17: warning: 'ir_currents' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:162:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/net/netfilter/xt_recent.c:103:37: warning: 'recent_old_fops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/sched/sch_choke.c:595:37: warning: 'choke_class_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/include/linux/list.h:457:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/net/wireless/nl80211.c:417:1: warning: 'nl80211_wowlan_tcp_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/wireless/nl80211.c:404:1: warning: 'nl80211_wowlan_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/smsc/smc91x.c:1899:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/regulator/pcap-regulator.c:93:27: warning: 'SW3_table' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/regulator/tps62360-regulator.c:364:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/spi/spi-gpio.c:255:8: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/spi/spi-pl022.c:281:31: warning: large integer implicitly truncated to unsigned type [-Woverflow]
/home/broonie/build/linux-stable-rt/include/linux/kern_levels.h:4:18: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'resource_size_t {aka long long unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/drivers/staging/iio/adc/ad7192.c:237:3: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/staging/panel/panel.c:1804:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/usb/gadget/gmidi.c:47:19: warning: 'shortname' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:414:29: warning: 'seq_el_on' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:402:29: warning: 'seq_els_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:390:29: warning: 'seq_gls_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:378:29: warning: 'seq_sd_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:366:29: warning: 'seq_gam_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:356:29: warning: 'seq_vbl_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:346:29: warning: 'seq_vbh_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:334:29: warning: 'seq_vint_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:324:29: warning: 'seq_vmos_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:314:29: warning: 'seq_vgl_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:304:29: warning: 'seq_vgh_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:294:29: warning: 'seq_vreg1_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:284:29: warning: 'seq_vl3_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:274:29: warning: 'seq_vci1_2nd_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:264:29: warning: 'seq_vl2_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:254:29: warning: 'seq_vl1_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:244:29: warning: 'seq_vci1_1st_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:212:29: warning: 'seq_pwr_ctrl' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:187:29: warning: 'seq_apon' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:92:29: warning: 'seq_swreset' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/lms501kf03.c:100:28: warning: 'seq_sleep_in' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/lms501kf03.c:96:28: warning: 'seq_up_dn' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/s6e63m0.c:331:29: warning: 'seq_elvss_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/s6e63m0.c:317:29: warning: 'seq_acl_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/usb/gadget/nokia.c:57:19: warning: 'product_nokia' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:41:18: warning: 'm2ThreshExt_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:40:18: warning: 'm1ThreshExt_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:39:18: warning: 'm2ThreshLowExt_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:38:18: warning: 'm1ThreshLowExt_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:37:18: warning: 'm2CountThrLow_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:36:18: warning: 'm2CountThr_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:35:18: warning: 'm2Thresh_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:34:18: warning: 'm1Thresh_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:33:18: warning: 'm2ThreshLow_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:32:18: warning: 'm1ThreshLow_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/usb/gadget/mv_udc_core.c:62:19: warning: 'driver_desc' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/usb/gadget/mv_u3d_core.c:39:19: warning: 'driver_desc' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmfmac/dhd_common.c:36:19: warning: 'brcmf_version' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/libertas_tf/main.c:30:19: warning: 'lbtf_driver_version' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c:526:19: warning: 'retry_limit' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/rtlwifi/efuse.c:38:31: warning: 'RTL8712_SDIO_EFUSE_TABLE' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/rtlwifi/efuse.c:34:17: warning: 'MAX_PGPKT_SIZE' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_lcn.c:1523:33: warning: 'dot11lcnphytbl_rx_gain_info_rev1' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9298:18: warning: 'papd_cal_scalars_tbl_core1_rev3' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9231:18: warning: 'papd_comp_epsilon_tbl_core1_rev3' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9164:18: warning: 'papd_cal_scalars_tbl_core0_rev3' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9097:18: warning: 'papd_comp_epsilon_tbl_core0_rev3' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ti/wlcore/spi.c:321:1: warning: the frame size of 8688 bytes is larger than 2048 bytes [-Wframe-larger-than=]
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 7 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/scripts/sortextable.h:158:3: warning: 'relocs_size' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/scripts/sortextable.h:158:3: warning: 'relocs_size' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:6: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:6: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/net/core/sysctl_net_core.c:24:12: warning: 'one' defined but not used [-Wunused-variable]
/home/broonie/build/linux-stable-rt/include/linux/spinlock.h:237:3: warning: 'flags' may be used uninitialized in this function [-Wmaybe-uninitialized]
-------------------------------------------------------------------------------
x86_64-defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/net/core/sysctl_net_core.c:24:12: warning: 'one' defined but not used [-Wunused-variable]
-------------------------------------------------------------------------------
arm-allmodconfig : PASS, 0 errors, 56 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/arch/arm/mm/init.c:731:21: warning: passing argument 1 of 'free_reserved_area' makes integer from pointer without a cast [-Wint-conversion]
/home/broonie/build/linux-stable-rt/arch/arm/mm/init.c:731:35: warning: passing argument 2 of 'free_reserved_area' makes integer from pointer without a cast [-Wint-conversion]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/arch/arm/mach-omap2/board-am3517crane.c:113:6: warning: unused variable 'ret' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:377:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:380:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:383:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/kernel/auditfilter.c:426:3: warning: this decimal constant is unsigned only in ISO C90
/home/broonie/build/linux-stable-rt/include/linux/kernel.h:677:17: warning: comparison of distinct pointer types lacks a cast
/home/broonie/build/linux-stable-rt/drivers/block/mtip32xx/mtip32xx.c:2827:1: warning: the frame size of 1080 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/net/core/sysctl_net_core.c:24:12: warning: 'one' defined but not used [-Wunused-variable]
/home/broonie/build/linux-stable-rt/include/linux/clocksource.h:345:20: warning: comparison of distinct pointer types lacks a cast
/home/broonie/build/linux-stable-rt/drivers/gpu/drm/exynos/exynos_hdmi.c:1702:2: warning: ignoring return value of 'regulator_bulk_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/infiniband/hw/cxgb4/mem.c:79:25: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/infiniband/hw/nes/nes_hw.c:81:23: warning: 'nes_iwarp_state_str' defined but not used [-Wunused-variable]
/home/broonie/build/linux-stable-rt/drivers/infiniband/hw/nes/nes_hw.c:92:23: warning: 'nes_tcp_state_str' defined but not used [-Wunused-variable]
/home/broonie/build/linux-stable-rt/drivers/iommu/omap-iommu.c:1238:17: warning: format '%lx' expects argument of type 'long unsigned int', but argument 4 has type 'dma_addr_t {aka unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/drivers/iommu/omap-iommu.c:1245:17: warning: format '%lx' expects argument of type 'long unsigned int', but argument 4 has type 'dma_addr_t {aka unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
/home/broonie/build/linux-stable-rt/include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
/home/broonie/build/linux-stable-rt/net/sunrpc/xprtrdma/verbs.c:1774:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/misc/lkdtm.c:276:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/mtd/chips/cfi_cmdset_0020.c:654:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/mmc/host/tmio_mmc_pio.c:798:3: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/amd/nmclan_cs.c:625:3: warning: 'pcmcia_request_exclusive_irq' is deprecated [-Wdeprecated-declarations]
/home/broonie/build/linux-stable-rt/drivers/media/platform/omap3isp/ispccp2.c:167:3: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/power/ab8500_charger.c:1389:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/power/ab8500_charger.c:1558:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/pinctrl/pinctrl-bcm2835.c:1053:2: warning: ignoring return value of 'gpiochip_remove', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/pinctrl/pinctrl-bcm2835.c:1036:3: warning: ignoring return value of 'gpiochip_remove', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/power/pm2301_charger.c:725:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/media/platform/coda.c:944:39: warning: array subscript is above array bounds [-Warray-bounds]
/home/broonie/build/linux-stable-rt/drivers/media/platform/coda.c:952:40: warning: array subscript is above array bounds [-Warray-bounds]
/home/broonie/build/linux-stable-rt/drivers/power/twl4030_charger.c:192:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/dec/tulip/winbond-840.c:911:2: warning: #warning Processor architecture undefined [-Wcpp]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/neterion/vxge/vxge-main.c:2115:13: warning: 'adaptive_coalesce_tx_interrupts' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/neterion/vxge/vxge-main.c:2143:13: warning: 'adaptive_coalesce_rx_interrupts' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/iwlwifi/mvm/fw.c:90:64: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/iwlwifi/mvm/fw.c:90:64: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/sfc/selftest.c:389:9: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/drivers/scsi/pm8001/pm8001_init.c:427:5: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:7901:5: warning: case value '257' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
/home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:7898:5: warning: case value '513' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
/home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:8517:5: warning: case value '257' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
/home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:8510:5: warning: case value '513' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
/home/broonie/build/linux-stable-rt/drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
/home/broonie/build/linux-stable-rt/drivers/tty/sysrq.c:907:33: warning: array subscript is above array bounds [-Warray-bounds]
/home/broonie/build/linux-stable-rt/drivers/tty/sysrq.c:907:33: warning: array subscript is above array bounds [-Warray-bounds]
/home/broonie/build/linux-stable-rt/drivers/video/aty/radeon_pm.c:1718:13: warning: 'radeon_reinitialize_M10' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/staging/sm7xxfb/sm7xxfb.c:117:19: warning: 'sm7xx_vga_setup' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/usb/host/xhci.c:3517:17: warning: unused variable 'dev' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/drivers/usb/host/xhci.c:3603:17: warning: unused variable 'dev' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/drivers/staging/vt6655/device_main.c:3257:1: warning: the frame size of 1864 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/staging/vt6655/iwctl.c:758:1: warning: the frame size of 1280 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/staging/wlan-ng/prism2fw.c:795:1: warning: the frame size of 1072 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/Documentation/misc-devices/mei/mei-amt-version.c:103:5: warning: 'acmd.fd' is used uninitialized in this function [-Wuninitialized]
-------------------------------------------------------------------------------
arm-allnoconfig : PASS, 0 errors, 3 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:6: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:6: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
-------------------------------------------------------------------------------
x86_64-allnoconfig : PASS, 0 errors, 3 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/scripts/sortextable.h:158:3: warning: 'relocs_size' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/scripts/sortextable.h:158:3: warning: 'relocs_size' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
-------------------------------------------------------------------------------
arm64-defconfig : PASS, 0 errors, 17 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/mm/swap.c:47:30: warning: 'swapvec_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/swap.c:46:30: warning: 'rotate_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/kernel/workqueue.c:319:30: warning: 'pendingb_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/net/core/skbuff.c:343:30: warning: 'netdev_alloc_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:162:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/net/core/sysctl_net_core.c:24:12: warning: 'one' defined but not used [-Wunused-variable]
/home/broonie/build/linux-stable-rt/net/core/rtnetlink.c:1142:32: warning: 'ifla_vf_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/core/rtnetlink.c:1138:32: warning: 'ifla_vfinfo_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/smsc/smc91x.c:1899:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/net/core/net-sysfs.c:30:19: warning: 'fmt_long_hex' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ipv4/tcp_ipv4.c:593:30: warning: 'tcp_sk_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ipv4/arp.c:152:31: warning: 'arp_broken_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ipv4/icmp.c:208:30: warning: 'icmp_sk_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/packet/af_packet.c:3674:4: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
The loop in sugov_next_freq_shared() contains an if block to skip the
loop for the current CPU. This turns out to be an unnecessary
conditional in the scheduler's hot-path for every CPU in the policy.
It would be better to drop the conditional and make the loop treat all
the CPUs in the same way. That would eliminate the need of calling
sugov_iowait_boost() at the top of the routine.
To keep the code optimized to return early if the current CPU has RT/DL
flags set, move the flags check to sugov_update_shared() instead in
order to avoid the function call entirely.
Signed-off-by: Viresh Kumar <viresh.kumar(a)linaro.org>
---
V1->V2:
- Keep the flags check separately for the current CPU, but move it to
the parent routine.
- Improved commit log.
kernel/sched/cpufreq_schedutil.c | 25 +++++++++----------------
1 file changed, 9 insertions(+), 16 deletions(-)
diff --git a/kernel/sched/cpufreq_schedutil.c b/kernel/sched/cpufreq_schedutil.c
index 78468aa051ab..f5ffe241812e 100644
--- a/kernel/sched/cpufreq_schedutil.c
+++ b/kernel/sched/cpufreq_schedutil.c
@@ -217,30 +217,19 @@ static void sugov_update_single(struct update_util_data *hook, u64 time,
sugov_update_commit(sg_policy, time, next_f);
}
-static unsigned int sugov_next_freq_shared(struct sugov_cpu *sg_cpu,
- unsigned long util, unsigned long max,
- unsigned int flags)
+static unsigned int sugov_next_freq_shared(struct sugov_cpu *sg_cpu)
{
struct sugov_policy *sg_policy = sg_cpu->sg_policy;
struct cpufreq_policy *policy = sg_policy->policy;
- unsigned int max_f = policy->cpuinfo.max_freq;
u64 last_freq_update_time = sg_policy->last_freq_update_time;
+ unsigned long util = 0, max = 1;
unsigned int j;
- if (flags & SCHED_CPUFREQ_RT_DL)
- return max_f;
-
- sugov_iowait_boost(sg_cpu, &util, &max);
-
for_each_cpu(j, policy->cpus) {
- struct sugov_cpu *j_sg_cpu;
+ struct sugov_cpu *j_sg_cpu = &per_cpu(sugov_cpu, j);
unsigned long j_util, j_max;
s64 delta_ns;
- if (j == smp_processor_id())
- continue;
-
- j_sg_cpu = &per_cpu(sugov_cpu, j);
/*
* If the CPU utilization was last updated before the previous
* frequency update and the time elapsed between the last update
@@ -254,7 +243,7 @@ static unsigned int sugov_next_freq_shared(struct sugov_cpu *sg_cpu,
continue;
}
if (j_sg_cpu->flags & SCHED_CPUFREQ_RT_DL)
- return max_f;
+ return policy->cpuinfo.max_freq;
j_util = j_sg_cpu->util;
j_max = j_sg_cpu->max;
@@ -289,7 +278,11 @@ static void sugov_update_shared(struct update_util_data *hook, u64 time,
sg_cpu->last_update = time;
if (sugov_should_update_freq(sg_policy, time)) {
- next_f = sugov_next_freq_shared(sg_cpu, util, max, flags);
+ if (flags & SCHED_CPUFREQ_RT_DL)
+ next_f = sg_policy->policy->cpuinfo.max_freq;
+ else
+ next_f = sugov_next_freq_shared(sg_cpu);
+
sugov_update_commit(sg_policy, time, next_f);
}
--
2.7.1.410.g6faf27b
Tree/Branch: v3.10-rt
Git describe: v3.10.104-rt118-317-g62acb48
Commit: 62acb48c97 Linux 3.10.105-rt119
Build Time: 36 min 59 sec
Passed: 7 / 8 ( 87.50 %)
Failed: 1 / 8 ( 12.50 %)
Errors: 1
Warnings: 181
Section Mismatches: 0
Failed defconfigs:
arm64-allmodconfig
Errors:
arm64-allmodconfig
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
6 warnings 0 mismatches : arm64-allnoconfig
130 warnings 0 mismatches : arm64-allmodconfig
7 warnings 0 mismatches : arm-multi_v7_defconfig
4 warnings 0 mismatches : x86_64-defconfig
56 warnings 0 mismatches : arm-allmodconfig
3 warnings 0 mismatches : arm-allnoconfig
3 warnings 0 mismatches : x86_64-allnoconfig
17 warnings 0 mismatches : arm64-defconfig
-------------------------------------------------------------------------------
Errors summary: 1
9 /home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
Warnings Summary: 181
8 /home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
5 /home/broonie/build/linux-stable-rt/net/core/sysctl_net_core.c:24:12: warning: 'one' defined but not used [-Wunused-variable]
4 /home/broonie/build/linux-stable-rt/scripts/sortextable.h:158:3: warning: 'relocs_size' may be used uninitialized in this function [-Wmaybe-uninitialized]
4 /home/broonie/build/linux-stable-rt/include/linux/ftrace.h:617:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
4 /home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:162:3: warning: value computed is not used [-Wunused-value]
3 /home/broonie/build/linux-stable-rt/mm/swap.c:47:30: warning: 'swapvec_lock' defined but not used [-Wunused-const-variable=]
3 /home/broonie/build/linux-stable-rt/mm/swap.c:46:30: warning: 'rotate_lock' defined but not used [-Wunused-const-variable=]
3 /home/broonie/build/linux-stable-rt/kernel/workqueue.c:319:30: warning: 'pendingb_lock' defined but not used [-Wunused-const-variable=]
3 /home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
3 /home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
3 /home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:74:3: warning: value computed is not used [-Wunused-value]
2 /home/broonie/build/linux-stable-rt/net/packet/af_packet.c:3674:4: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
2 /home/broonie/build/linux-stable-rt/net/ipv4/tcp_ipv4.c:593:30: warning: 'tcp_sk_lock' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/ipv4/icmp.c:208:30: warning: 'icmp_sk_lock' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/core/skbuff.c:343:30: warning: 'netdev_alloc_lock' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/core/rtnetlink.c:1142:32: warning: 'ifla_vf_policy' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/core/rtnetlink.c:1138:32: warning: 'ifla_vfinfo_policy' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/core/net-sysfs.c:30:19: warning: 'fmt_long_hex' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
2 /home/broonie/build/linux-stable-rt/fs/namespace.c:2590:6: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
2 /home/broonie/build/linux-stable-rt/fs/namespace.c:2590:6: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
2 /home/broonie/build/linux-stable-rt/drivers/tty/sysrq.c:907:33: warning: array subscript is above array bounds [-Warray-bounds]
2 /home/broonie/build/linux-stable-rt/drivers/net/wireless/iwlwifi/mvm/fw.c:90:64: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
2 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/smsc/smc91x.c:1899:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:526:38: warning: 'wm8991_dapm_rxvoice_controls' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:126:27: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:106:27: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:532:38: warning: 'wm8990_dapm_rxvoice_controls' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:126:35: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:118:35: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8988.c:273:30: warning: 'wm8988_rline_enum' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8974.c:202:38: warning: 'wm8974_mic_boost_controls' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8974.c:198:38: warning: 'wm8974_aux_boost_controls' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8900.c:451:38: warning: 'wm8900_dapm_routput2_control' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8900.c:448:38: warning: 'wm8900_dapm_loutput2_control' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8737.c:116:30: warning: 'high_3d' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/tlv320aic23.c:56:30: warning: 'tlv320aic23_rec_src' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/ml26124.c:71:35: warning: 'ngth' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:868:30: warning: 'max98090_pa2en_enum' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:864:30: warning: 'max98090_pa1en_enum' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:389:35: warning: 'max98090_alc_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:387:35: warning: 'max98090_sidetone_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:2354:12: warning: 'max98090_runtime_suspend' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:2341:12: warning: 'max98090_runtime_resume' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/cs42l73.c:383:38: warning: 'xsp_output_mux' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/sound/soc/codecs/cs42l73.c:380:38: warning: 'vsp_output_mux' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/wireless/nl80211.c:417:1: warning: 'nl80211_wowlan_tcp_policy' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/wireless/nl80211.c:404:1: warning: 'nl80211_wowlan_policy' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/sunrpc/xprtrdma/verbs.c:1774:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/net/sched/sch_choke.c:595:37: warning: 'choke_class_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/netfilter/xt_recent.c:103:37: warning: 'recent_old_fops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/mac80211/debugfs_sta.c:35:37: warning: 'sta_aid_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/mac80211/debugfs.c:70:23: warning: 'rate_ctrl_alg_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/ipv4/arp.c:152:31: warning: 'arp_broken_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/ieee802154/6lowpan.c:89:17: warning: 'lowpan_unc_ctxconf' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/dcb/dcbnl.c:183:32: warning: 'dcbnl_ieee_app' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/net/caif/cfpkt_skbuff.c:296:3: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/kernel/modsign_pubkey.c:28:30: warning: 'annoy_ccache' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/kernel/auditfilter.c:426:3: warning: this decimal constant is unsigned only in ISO C90
1 /home/broonie/build/linux-stable-rt/include/linux/spinlock.h:237:3: warning: 'flags' may be used uninitialized in this function [-Wmaybe-uninitialized]
1 /home/broonie/build/linux-stable-rt/include/linux/list.h:457:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/include/linux/kernel.h:677:17: warning: comparison of distinct pointer types lacks a cast
1 /home/broonie/build/linux-stable-rt/include/linux/kern_levels.h:4:18: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'resource_size_t {aka long long unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/include/linux/ftrace.h:618:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
1 /home/broonie/build/linux-stable-rt/include/linux/clocksource.h:345:20: warning: comparison of distinct pointer types lacks a cast
1 /home/broonie/build/linux-stable-rt/fs/ncpfs/dir.c:854:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/fs/cifs/netmisc.c:133:40: warning: 'mapping_table_ERRHRD' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/fs/cifs/cifsacl.c:43:30: warning: 'sid_user' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/fs/afs/cmservice.c:78:35: warning: 'afs_SRXCBProbeUuid' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/s6e63m0.c:331:29: warning: 'seq_elvss_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/s6e63m0.c:317:29: warning: 'seq_acl_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/lms501kf03.c:96:28: warning: 'seq_up_dn' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/lms501kf03.c:100:28: warning: 'seq_sleep_in' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:92:29: warning: 'seq_swreset' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:414:29: warning: 'seq_el_on' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:402:29: warning: 'seq_els_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:390:29: warning: 'seq_gls_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:378:29: warning: 'seq_sd_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:366:29: warning: 'seq_gam_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:356:29: warning: 'seq_vbl_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:346:29: warning: 'seq_vbh_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:334:29: warning: 'seq_vint_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:324:29: warning: 'seq_vmos_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:314:29: warning: 'seq_vgl_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:304:29: warning: 'seq_vgh_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:294:29: warning: 'seq_vreg1_amp_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:284:29: warning: 'seq_vl3_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:274:29: warning: 'seq_vci1_2nd_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:264:29: warning: 'seq_vl2_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:254:29: warning: 'seq_vl1_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:244:29: warning: 'seq_vci1_1st_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:212:29: warning: 'seq_pwr_ctrl' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:187:29: warning: 'seq_apon' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/video/aty/radeon_pm.c:1718:13: warning: 'radeon_reinitialize_M10' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/usb/host/xhci.c:3603:17: warning: unused variable 'dev' [-Wunused-variable]
1 /home/broonie/build/linux-stable-rt/drivers/usb/host/xhci.c:3517:17: warning: unused variable 'dev' [-Wunused-variable]
1 /home/broonie/build/linux-stable-rt/drivers/usb/gadget/nokia.c:57:19: warning: 'product_nokia' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/usb/gadget/mv_udc_core.c:62:19: warning: 'driver_desc' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/usb/gadget/mv_u3d_core.c:39:19: warning: 'driver_desc' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/usb/gadget/gmidi.c:47:19: warning: 'shortname' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/wlan-ng/prism2fw.c:795:1: warning: the frame size of 1072 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/vt6655/iwctl.c:758:1: warning: the frame size of 1280 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/vt6655/device_main.c:3257:1: warning: the frame size of 1864 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/staging/sm7xxfb/sm7xxfb.c:117:19: warning: 'sm7xx_vga_setup' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/staging/panel/panel.c:1804:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/drivers/staging/iio/adc/ad7192.c:237:3: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable-rt/drivers/spi/spi-pl022.c:281:31: warning: large integer implicitly truncated to unsigned type [-Woverflow]
1 /home/broonie/build/linux-stable-rt/drivers/spi/spi-gpio.c:255:8: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/pm8001/pm8001_init.c:427:5: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:8517:5: warning: case value '257' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:8510:5: warning: case value '513' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:7901:5: warning: case value '257' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
1 /home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:7898:5: warning: case value '513' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
1 /home/broonie/build/linux-stable-rt/drivers/regulator/tps62360-regulator.c:364:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/regulator/pcap-regulator.c:93:27: warning: 'SW3_table' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/power/twl4030_charger.c:192:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/power/pm2301_charger.c:725:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/power/ab8500_charger.c:1558:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/power/ab8500_charger.c:1389:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/pinctrl/pinctrl-bcm2835.c:1053:2: warning: ignoring return value of 'gpiochip_remove', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/pinctrl/pinctrl-bcm2835.c:1036:3: warning: ignoring return value of 'gpiochip_remove', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ti/wlcore/spi.c:321:1: warning: the frame size of 8688 bytes is larger than 2048 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/rtlwifi/efuse.c:38:31: warning: 'RTL8712_SDIO_EFUSE_TABLE' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/rtlwifi/efuse.c:34:17: warning: 'MAX_PGPKT_SIZE' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/libertas_tf/main.c:30:19: warning: 'lbtf_driver_version' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9298:18: warning: 'papd_cal_scalars_tbl_core1_rev3' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9231:18: warning: 'papd_comp_epsilon_tbl_core1_rev3' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9164:18: warning: 'papd_cal_scalars_tbl_core0_rev3' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9097:18: warning: 'papd_comp_epsilon_tbl_core0_rev3' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_lcn.c:1523:33: warning: 'dot11lcnphytbl_rx_gain_info_rev1' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c:526:19: warning: 'retry_limit' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmfmac/dhd_common.c:36:19: warning: 'brcmf_version' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:41:18: warning: 'm2ThreshExt_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:40:18: warning: 'm1ThreshExt_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:39:18: warning: 'm2ThreshLowExt_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:38:18: warning: 'm1ThreshLowExt_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:37:18: warning: 'm2CountThrLow_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:36:18: warning: 'm2CountThr_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:35:18: warning: 'm2Thresh_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:34:18: warning: 'm1Thresh_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:33:18: warning: 'm2ThreshLow_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:32:18: warning: 'm1ThreshLow_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/sfc/selftest.c:389:9: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
1 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/neterion/vxge/vxge-main.c:2143:13: warning: 'adaptive_coalesce_rx_interrupts' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/neterion/vxge/vxge-main.c:2115:13: warning: 'adaptive_coalesce_tx_interrupts' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/dec/tulip/winbond-840.c:911:2: warning: #warning Processor architecture undefined [-Wcpp]
1 /home/broonie/build/linux-stable-rt/drivers/net/ethernet/amd/nmclan_cs.c:625:3: warning: 'pcmcia_request_exclusive_irq' is deprecated [-Wdeprecated-declarations]
1 /home/broonie/build/linux-stable-rt/drivers/mtd/chips/cfi_cmdset_0020.c:654:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/mmc/host/tmio_mmc_pio.c:798:3: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/misc/lkdtm.c:276:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/misc/bh1770glc.c:184:17: warning: 'prox_curr_ma' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/misc/apds990x.c:191:17: warning: 'ir_currents' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/mfd/tps65217.c:173:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/media/platform/omap3isp/ispccp2.c:167:3: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/media/platform/coda.c:952:40: warning: array subscript is above array bounds [-Warray-bounds]
1 /home/broonie/build/linux-stable-rt/drivers/media/platform/coda.c:944:39: warning: array subscript is above array bounds [-Warray-bounds]
1 /home/broonie/build/linux-stable-rt/drivers/iommu/omap-iommu.c:1245:17: warning: format '%lx' expects argument of type 'long unsigned int', but argument 4 has type 'dma_addr_t {aka unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/iommu/omap-iommu.c:1238:17: warning: format '%lx' expects argument of type 'long unsigned int', but argument 4 has type 'dma_addr_t {aka unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/input/keyboard/cros_ec_keyb.c:210:13: warning: 'cros_ec_keyb_clear_keyboard' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable-rt/drivers/input/joystick/analog.c:171:2: warning: #warning Precise timer not defined for this architecture. [-Wcpp]
1 /home/broonie/build/linux-stable-rt/drivers/infiniband/hw/nes/nes_hw.c:92:23: warning: 'nes_tcp_state_str' defined but not used [-Wunused-variable]
1 /home/broonie/build/linux-stable-rt/drivers/infiniband/hw/nes/nes_hw.c:81:23: warning: 'nes_iwarp_state_str' defined but not used [-Wunused-variable]
1 /home/broonie/build/linux-stable-rt/drivers/infiniband/hw/cxgb4/mem.c:79:25: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/iio/adc/exynos_adc.c:111:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/iio/adc/ad7793.c:449:37: warning: 'ad7797_attribute_group' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable-rt/drivers/gpu/drm/exynos/exynos_hdmi.c:1702:2: warning: ignoring return value of 'regulator_bulk_enable', declared with attribute warn_unused_result [-Wunused-result]
1 /home/broonie/build/linux-stable-rt/drivers/gpio/gpio-mcp23s08.c:622:10: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/dma/pl330.c:2379:21: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 /home/broonie/build/linux-stable-rt/drivers/dma/pl330.c:2058:5: warning: passing argument 3 of 'dma_alloc_coherent' from incompatible pointer type [-Wincompatible-pointer-types]
1 /home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:920:5: warning: format '%x' expects argument of type 'unsigned int', but argument 5 has type 'size_t {aka long unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:848:31: warning: format '%x' expects argument of type 'unsigned int', but argument 7 has type 'dma_addr_t {aka long long unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:848:31: warning: format '%x' expects argument of type 'unsigned int', but argument 4 has type 'dma_addr_t {aka long long unsigned int}' [-Wformat=]
1 /home/broonie/build/linux-stable-rt/drivers/block/mtip32xx/mtip32xx.c:2827:1: warning: the frame size of 1080 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 /home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:383:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
1 /home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:380:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
1 /home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:377:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
1 /home/broonie/build/linux-stable-rt/arch/arm/mm/init.c:731:35: warning: passing argument 2 of 'free_reserved_area' makes integer from pointer without a cast [-Wint-conversion]
1 /home/broonie/build/linux-stable-rt/arch/arm/mm/init.c:731:21: warning: passing argument 1 of 'free_reserved_area' makes integer from pointer without a cast [-Wint-conversion]
1 /home/broonie/build/linux-stable-rt/arch/arm/mach-omap2/board-am3517crane.c:113:6: warning: unused variable 'ret' [-Wunused-variable]
1 /home/broonie/build/linux-stable-rt/Documentation/misc-devices/mei/mei-amt-version.c:103:5: warning: 'acmd.fd' is used uninitialized in this function [-Wuninitialized]
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm64-allnoconfig : PASS, 0 errors, 6 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/mm/swap.c:47:30: warning: 'swapvec_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/swap.c:46:30: warning: 'rotate_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/kernel/workqueue.c:319:30: warning: 'pendingb_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
-------------------------------------------------------------------------------
arm64-allmodconfig : FAIL, 9 errors, 130 warnings, 0 section mismatches
Errors:
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
/home/broonie/build/linux-stable-rt/include/linux/module.h:87:32: error: storage size of '__mod_amba_device_table' isn't known
Warnings:
/home/broonie/build/linux-stable-rt/mm/swap.c:47:30: warning: 'swapvec_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/swap.c:46:30: warning: 'rotate_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/kernel/workqueue.c:319:30: warning: 'pendingb_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:74:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:74:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:74:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/fs/afs/cmservice.c:78:35: warning: 'afs_SRXCBProbeUuid' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/include/linux/ftrace.h:617:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable-rt/include/linux/ftrace.h:617:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable-rt/include/linux/ftrace.h:617:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable-rt/include/linux/ftrace.h:618:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable-rt/include/linux/ftrace.h:617:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable-rt/kernel/modsign_pubkey.c:28:30: warning: 'annoy_ccache' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/cs42l73.c:383:38: warning: 'xsp_output_mux' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/cs42l73.c:380:38: warning: 'vsp_output_mux' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/caif/cfpkt_skbuff.c:296:3: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:2354:12: warning: 'max98090_runtime_suspend' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:2341:12: warning: 'max98090_runtime_resume' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:868:30: warning: 'max98090_pa2en_enum' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:864:30: warning: 'max98090_pa1en_enum' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:389:35: warning: 'max98090_alc_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/max98090.c:387:35: warning: 'max98090_sidetone_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/ml26124.c:71:35: warning: 'ngth' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/tlv320aic23.c:56:30: warning: 'tlv320aic23_rec_src' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8737.c:116:30: warning: 'high_3d' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:848:31: warning: format '%x' expects argument of type 'unsigned int', but argument 4 has type 'dma_addr_t {aka long long unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:848:31: warning: format '%x' expects argument of type 'unsigned int', but argument 7 has type 'dma_addr_t {aka long long unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/drivers/dma/amba-pl08x.c:920:5: warning: format '%x' expects argument of type 'unsigned int', but argument 5 has type 'size_t {aka long unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/net/core/skbuff.c:343:30: warning: 'netdev_alloc_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8900.c:451:38: warning: 'wm8900_dapm_routput2_control' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8900.c:448:38: warning: 'wm8900_dapm_loutput2_control' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/dma/pl330.c:2058:5: warning: passing argument 3 of 'dma_alloc_coherent' from incompatible pointer type [-Wincompatible-pointer-types]
/home/broonie/build/linux-stable-rt/drivers/dma/pl330.c:2379:21: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8974.c:202:38: warning: 'wm8974_mic_boost_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8974.c:198:38: warning: 'wm8974_aux_boost_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8988.c:273:30: warning: 'wm8988_rline_enum' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:532:38: warning: 'wm8990_dapm_rxvoice_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:126:35: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8990.c:118:35: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:162:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:526:38: warning: 'wm8991_dapm_rxvoice_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:126:27: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/sound/soc/codecs/wm8991.c:106:27: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/core/sysctl_net_core.c:24:12: warning: 'one' defined but not used [-Wunused-variable]
/home/broonie/build/linux-stable-rt/drivers/gpio/gpio-mcp23s08.c:622:10: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/fs/cifs/netmisc.c:133:40: warning: 'mapping_table_ERRHRD' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/core/rtnetlink.c:1142:32: warning: 'ifla_vf_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/core/rtnetlink.c:1138:32: warning: 'ifla_vfinfo_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/fs/cifs/cifsacl.c:43:30: warning: 'sid_user' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/core/net-sysfs.c:30:19: warning: 'fmt_long_hex' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/dcb/dcbnl.c:183:32: warning: 'dcbnl_ieee_app' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ieee802154/6lowpan.c:89:17: warning: 'lowpan_unc_ctxconf' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/iio/adc/exynos_adc.c:111:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/iio/adc/ad7793.c:449:37: warning: 'ad7797_attribute_group' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/input/joystick/analog.c:171:2: warning: #warning Precise timer not defined for this architecture. [-Wcpp]
/home/broonie/build/linux-stable-rt/net/ipv4/tcp_ipv4.c:593:30: warning: 'tcp_sk_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/input/keyboard/cros_ec_keyb.c:210:13: warning: 'cros_ec_keyb_clear_keyboard' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/net/ipv4/icmp.c:208:30: warning: 'icmp_sk_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/mfd/tps65217.c:173:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/misc/bh1770glc.c:184:17: warning: 'prox_curr_ma' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/misc/apds990x.c:191:17: warning: 'ir_currents' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/mac80211/debugfs.c:70:23: warning: 'rate_ctrl_alg_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/mac80211/debugfs_sta.c:35:37: warning: 'sta_aid_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:162:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/smsc/smc91x.c:1899:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/fs/ncpfs/dir.c:854:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/regulator/pcap-regulator.c:93:27: warning: 'SW3_table' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/regulator/tps62360-regulator.c:364:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:162:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/net/netfilter/xt_recent.c:103:37: warning: 'recent_old_fops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:41:18: warning: 'm2ThreshExt_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:40:18: warning: 'm1ThreshExt_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:39:18: warning: 'm2ThreshLowExt_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:38:18: warning: 'm1ThreshLowExt_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:37:18: warning: 'm2CountThrLow_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:36:18: warning: 'm2CountThr_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:35:18: warning: 'm2Thresh_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:34:18: warning: 'm1Thresh_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:33:18: warning: 'm2ThreshLow_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ath/ath9k/ar9003_phy.c:32:18: warning: 'm1ThreshLow_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmfmac/dhd_common.c:36:19: warning: 'brcmf_version' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c:526:19: warning: 'retry_limit' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_lcn.c:1523:33: warning: 'dot11lcnphytbl_rx_gain_info_rev1' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9298:18: warning: 'papd_cal_scalars_tbl_core1_rev3' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9231:18: warning: 'papd_comp_epsilon_tbl_core1_rev3' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9164:18: warning: 'papd_cal_scalars_tbl_core0_rev3' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/brcm80211/brcmsmac/phy/phytbl_n.c:9097:18: warning: 'papd_comp_epsilon_tbl_core0_rev3' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/libertas_tf/main.c:30:19: warning: 'lbtf_driver_version' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/rtlwifi/efuse.c:38:31: warning: 'RTL8712_SDIO_EFUSE_TABLE' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/rtlwifi/efuse.c:34:17: warning: 'MAX_PGPKT_SIZE' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/packet/af_packet.c:3674:4: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/spi/spi-gpio.c:255:8: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/spi/spi-pl022.c:281:31: warning: large integer implicitly truncated to unsigned type [-Woverflow]
/home/broonie/build/linux-stable-rt/include/linux/kern_levels.h:4:18: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'resource_size_t {aka long long unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/ti/wlcore/spi.c:321:1: warning: the frame size of 8688 bytes is larger than 2048 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/net/sched/sch_choke.c:595:37: warning: 'choke_class_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/include/linux/list.h:457:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/net/wireless/nl80211.c:417:1: warning: 'nl80211_wowlan_tcp_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/wireless/nl80211.c:404:1: warning: 'nl80211_wowlan_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/staging/panel/panel.c:1804:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/staging/iio/adc/ad7192.c:237:3: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:414:29: warning: 'seq_el_on' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:402:29: warning: 'seq_els_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:390:29: warning: 'seq_gls_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:378:29: warning: 'seq_sd_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:366:29: warning: 'seq_gam_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:356:29: warning: 'seq_vbl_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:346:29: warning: 'seq_vbh_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:334:29: warning: 'seq_vint_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:324:29: warning: 'seq_vmos_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:314:29: warning: 'seq_vgl_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:304:29: warning: 'seq_vgh_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:294:29: warning: 'seq_vreg1_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:284:29: warning: 'seq_vl3_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:274:29: warning: 'seq_vci1_2nd_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:264:29: warning: 'seq_vl2_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:254:29: warning: 'seq_vl1_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:244:29: warning: 'seq_vci1_1st_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:212:29: warning: 'seq_pwr_ctrl' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:187:29: warning: 'seq_apon' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/ld9040.c:92:29: warning: 'seq_swreset' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/lms501kf03.c:100:28: warning: 'seq_sleep_in' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/lms501kf03.c:96:28: warning: 'seq_up_dn' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/s6e63m0.c:331:29: warning: 'seq_elvss_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/video/backlight/s6e63m0.c:317:29: warning: 'seq_acl_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/usb/gadget/gmidi.c:47:19: warning: 'shortname' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/usb/gadget/nokia.c:57:19: warning: 'product_nokia' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/usb/gadget/mv_udc_core.c:62:19: warning: 'driver_desc' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/usb/gadget/mv_u3d_core.c:39:19: warning: 'driver_desc' defined but not used [-Wunused-const-variable=]
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 7 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/scripts/sortextable.h:158:3: warning: 'relocs_size' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/scripts/sortextable.h:158:3: warning: 'relocs_size' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:6: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:6: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/net/core/sysctl_net_core.c:24:12: warning: 'one' defined but not used [-Wunused-variable]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/include/linux/spinlock.h:237:3: warning: 'flags' may be used uninitialized in this function [-Wmaybe-uninitialized]
-------------------------------------------------------------------------------
x86_64-defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/net/core/sysctl_net_core.c:24:12: warning: 'one' defined but not used [-Wunused-variable]
-------------------------------------------------------------------------------
arm-allmodconfig : PASS, 0 errors, 56 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/arch/arm/mm/init.c:731:21: warning: passing argument 1 of 'free_reserved_area' makes integer from pointer without a cast [-Wint-conversion]
/home/broonie/build/linux-stable-rt/arch/arm/mm/init.c:731:35: warning: passing argument 2 of 'free_reserved_area' makes integer from pointer without a cast [-Wint-conversion]
/home/broonie/build/linux-stable-rt/arch/arm/mach-omap2/board-am3517crane.c:113:6: warning: unused variable 'ret' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:377:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:380:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/drivers/ata/pata_hpt366.c:383:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/kernel/auditfilter.c:426:3: warning: this decimal constant is unsigned only in ISO C90
/home/broonie/build/linux-stable-rt/include/linux/kernel.h:677:17: warning: comparison of distinct pointer types lacks a cast
/home/broonie/build/linux-stable-rt/drivers/block/mtip32xx/mtip32xx.c:2827:1: warning: the frame size of 1080 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/include/linux/clocksource.h:345:20: warning: comparison of distinct pointer types lacks a cast
/home/broonie/build/linux-stable-rt/net/core/sysctl_net_core.c:24:12: warning: 'one' defined but not used [-Wunused-variable]
/home/broonie/build/linux-stable-rt/drivers/gpu/drm/exynos/exynos_hdmi.c:1702:2: warning: ignoring return value of 'regulator_bulk_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/iommu/omap-iommu.c:1238:17: warning: format '%lx' expects argument of type 'long unsigned int', but argument 4 has type 'dma_addr_t {aka unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/drivers/iommu/omap-iommu.c:1245:17: warning: format '%lx' expects argument of type 'long unsigned int', but argument 4 has type 'dma_addr_t {aka unsigned int}' [-Wformat=]
/home/broonie/build/linux-stable-rt/drivers/infiniband/hw/cxgb4/mem.c:79:25: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/infiniband/hw/nes/nes_hw.c:81:23: warning: 'nes_iwarp_state_str' defined but not used [-Wunused-variable]
/home/broonie/build/linux-stable-rt/drivers/infiniband/hw/nes/nes_hw.c:92:23: warning: 'nes_tcp_state_str' defined but not used [-Wunused-variable]
/home/broonie/build/linux-stable-rt/include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
/home/broonie/build/linux-stable-rt/include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
/home/broonie/build/linux-stable-rt/drivers/misc/lkdtm.c:276:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/mmc/host/tmio_mmc_pio.c:798:3: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/mtd/chips/cfi_cmdset_0020.c:654:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/amd/nmclan_cs.c:625:3: warning: 'pcmcia_request_exclusive_irq' is deprecated [-Wdeprecated-declarations]
/home/broonie/build/linux-stable-rt/drivers/media/platform/omap3isp/ispccp2.c:167:3: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/media/platform/coda.c:944:39: warning: array subscript is above array bounds [-Warray-bounds]
/home/broonie/build/linux-stable-rt/drivers/media/platform/coda.c:952:40: warning: array subscript is above array bounds [-Warray-bounds]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/dec/tulip/winbond-840.c:911:2: warning: #warning Processor architecture undefined [-Wcpp]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/neterion/vxge/vxge-main.c:2115:13: warning: 'adaptive_coalesce_tx_interrupts' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/neterion/vxge/vxge-main.c:2143:13: warning: 'adaptive_coalesce_rx_interrupts' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/sfc/selftest.c:389:9: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/net/sunrpc/xprtrdma/verbs.c:1774:1: warning: the frame size of 1032 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/pinctrl/pinctrl-bcm2835.c:1053:2: warning: ignoring return value of 'gpiochip_remove', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/pinctrl/pinctrl-bcm2835.c:1036:3: warning: ignoring return value of 'gpiochip_remove', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/power/ab8500_charger.c:1389:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/power/ab8500_charger.c:1558:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/power/pm2301_charger.c:725:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/power/twl4030_charger.c:192:4: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/iwlwifi/mvm/fw.c:90:64: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/drivers/net/wireless/iwlwifi/mvm/fw.c:90:64: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable-rt/drivers/scsi/pm8001/pm8001_init.c:427:5: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
/home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:7901:5: warning: case value '257' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
/home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:7898:5: warning: case value '513' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
/home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:8517:5: warning: case value '257' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
/home/broonie/build/linux-stable-rt/drivers/scsi/aic7xxx_old.c:8510:5: warning: case value '513' not in enumerated type 'ahc_chip {aka enum <anonymous>}' [-Wswitch]
/home/broonie/build/linux-stable-rt/drivers/tty/sysrq.c:907:33: warning: array subscript is above array bounds [-Warray-bounds]
/home/broonie/build/linux-stable-rt/drivers/tty/sysrq.c:907:33: warning: array subscript is above array bounds [-Warray-bounds]
/home/broonie/build/linux-stable-rt/drivers/video/aty/radeon_pm.c:1718:13: warning: 'radeon_reinitialize_M10' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/usb/host/xhci.c:3517:17: warning: unused variable 'dev' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/drivers/usb/host/xhci.c:3603:17: warning: unused variable 'dev' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/drivers/staging/sm7xxfb/sm7xxfb.c:117:19: warning: 'sm7xx_vga_setup' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable-rt/drivers/staging/vt6655/device_main.c:3257:1: warning: the frame size of 1864 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/staging/wlan-ng/prism2fw.c:795:1: warning: the frame size of 1072 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/drivers/staging/vt6655/iwctl.c:758:1: warning: the frame size of 1280 bytes is larger than 1024 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable-rt/Documentation/misc-devices/mei/mei-amt-version.c:103:5: warning: 'acmd.fd' is used uninitialized in this function [-Wuninitialized]
-------------------------------------------------------------------------------
arm-allnoconfig : PASS, 0 errors, 3 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:6: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:6: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
-------------------------------------------------------------------------------
x86_64-allnoconfig : PASS, 0 errors, 3 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/scripts/sortextable.h:158:3: warning: 'relocs_size' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/scripts/sortextable.h:158:3: warning: 'relocs_size' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
-------------------------------------------------------------------------------
arm64-defconfig : PASS, 0 errors, 17 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable-rt/mm/swap.c:47:30: warning: 'swapvec_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/mm/swap.c:46:30: warning: 'rotate_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/kernel/workqueue.c:319:30: warning: 'pendingb_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/fs/namespace.c:2590:8: warning: 'kernel_type' may be used uninitialized in this function [-Wmaybe-uninitialized]
/home/broonie/build/linux-stable-rt/mm/slub.c:1294:6: warning: unused variable 'idx' [-Wunused-variable]
/home/broonie/build/linux-stable-rt/net/core/skbuff.c:343:30: warning: 'netdev_alloc_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/arch/arm64/include/asm/cmpxchg.h:162:3: warning: value computed is not used [-Wunused-value]
/home/broonie/build/linux-stable-rt/net/core/sysctl_net_core.c:24:12: warning: 'one' defined but not used [-Wunused-variable]
/home/broonie/build/linux-stable-rt/net/core/rtnetlink.c:1142:32: warning: 'ifla_vf_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/core/rtnetlink.c:1138:32: warning: 'ifla_vfinfo_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/drivers/net/ethernet/smsc/smc91x.c:1899:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable-rt/net/core/net-sysfs.c:30:19: warning: 'fmt_long_hex' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/packet/af_packet.c:3674:4: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable-rt/net/ipv4/tcp_ipv4.c:593:30: warning: 'tcp_sk_lock' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ipv4/arp.c:152:31: warning: 'arp_broken_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable-rt/net/ipv4/icmp.c:208:30: warning: 'icmp_sk_lock' defined but not used [-Wunused-const-variable=]
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
Tree/Branch: v3.18-rt
Git describe: v3.18.47-rt52-38-ge433cbc
Commit: e433cbc1fa Linux 3.18.48-rt53
Build Time: 59 min 6 sec
Passed: 9 / 9 (100.00 %)
Failed: 0 / 9 ( 0.00 %)
Errors: 0
Warnings: 35
Section Mismatches: 0
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
13 warnings 0 mismatches : arm64-allmodconfig
4 warnings 0 mismatches : arm-multi_v5_defconfig
7 warnings 0 mismatches : arm-multi_v7_defconfig
4 warnings 0 mismatches : x86_64-defconfig
30 warnings 0 mismatches : arm-allmodconfig
2 warnings 0 mismatches : arm64-defconfig
-------------------------------------------------------------------------------
Warnings Summary: 35
6 ../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
6 ../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
6 ../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
5 ../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
3 ../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined, evaluates to 0 [-Wundef]
2 ../include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
2 ../fs/nfs/nfs4proc.c:3062:10: warning: switch condition has boolean value [-Wswitch-bool]
2 ../drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
2 ../drivers/net/ethernet/dec/tulip/winbond-840.c:910:2: warning: #warning Processor architecture undefined [-Wcpp]
1 ../include/uapi/linux/swab.h:13:15: warning: integer overflow in expression [-Woverflow]
1 ../include/linux/spinlock.h:253:3: warning: 'flags' may be used uninitialized in this function [-Wmaybe-uninitialized]
1 ../include/linux/kernel.h:708:17: warning: comparison of distinct pointer types lacks a cast
1 ../fs/btrfs/extent_io.c:2166:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/usb/gadget/function/f_ncm.c:203:0: warning: "NCAPS" redefined
1 ../drivers/thermal/x86_pkg_temp_thermal.c:414:1: warning: no return statement in function returning non-void [-Wreturn-type]
1 ../drivers/staging/vt6655/device_main.c:2997:1: warning: the frame size of 1312 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 ../drivers/staging/bcm/CmHost.c:1564:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/staging/bcm/CmHost.c:1546:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/staging/bcm/CmHost.c:1503:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/pci/host/pcie-xilinx.c:154:22: warning: format '%d' expects argument of type 'int', but argument 4 has type 'long unsigned int' [-Wformat=]
1 ../drivers/net/wireless/brcm80211/brcmfmac/fwsignal.c:1478:8: warning: 'skb' may be used uninitialized in this function [-Wmaybe-uninitialized]
1 ../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:467:46: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:307:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 ../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:303:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1 ../drivers/net/ethernet/dec/tulip/tulip_core.c:101:2: warning: #warning Processor architecture undefined! [-Wcpp]
1 ../drivers/mtd/chips/cfi_cmdset_0020.c:651:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=]
1 ../drivers/iommu/intel-iommu.c:1749:25: warning: unused variable 'drhd' [-Wunused-variable]
1 ../drivers/infiniband/ulp/iser/iser_verbs.c:1206:14: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/infiniband/ulp/iser/iser_verbs.c:1201:14: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/infiniband/ulp/iser/iser_verbs.c:1175:31: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/infiniband/ulp/iser/iser_verbs.c:1174:33: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
1 ../drivers/infiniband/hw/qib/qib_qp.c:44:0: warning: "BITS_PER_PAGE" redefined
1 ../drivers/block/drbd/drbd_bitmap.c:483:0: warning: "BITS_PER_PAGE_MASK" redefined
1 ../drivers/block/drbd/drbd_bitmap.c:482:0: warning: "BITS_PER_PAGE" redefined
1 ../arch/arm/mach-cns3xxx/pcie.c:313:1: warning: the frame size of 1080 bytes is larger than 1024 bytes [-Wframe-larger-than=]
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm64-allmodconfig : PASS, 0 errors, 13 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined, evaluates to 0 [-Wundef]
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined, evaluates to 0 [-Wundef]
../drivers/block/drbd/drbd_bitmap.c:482:0: warning: "BITS_PER_PAGE" redefined
../drivers/block/drbd/drbd_bitmap.c:483:0: warning: "BITS_PER_PAGE_MASK" redefined
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../drivers/infiniband/hw/qib/qib_qp.c:44:0: warning: "BITS_PER_PAGE" redefined
../drivers/staging/bcm/CmHost.c:1503:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/staging/bcm/CmHost.c:1546:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/staging/bcm/CmHost.c:1564:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/net/ethernet/dec/tulip/winbond-840.c:910:2: warning: #warning Processor architecture undefined [-Wcpp]
../drivers/net/ethernet/dec/tulip/tulip_core.c:101:2: warning: #warning Processor architecture undefined! [-Wcpp]
../drivers/usb/gadget/function/f_ncm.c:203:0: warning: "NCAPS" redefined
../drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
-------------------------------------------------------------------------------
arm-multi_v5_defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 7 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../fs/nfs/nfs4proc.c:3062:10: warning: switch condition has boolean value [-Wswitch-bool]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../include/linux/spinlock.h:253:3: warning: 'flags' may be used uninitialized in this function [-Wmaybe-uninitialized]
../drivers/net/wireless/brcm80211/brcmfmac/fwsignal.c:1478:8: warning: 'skb' may be used uninitialized in this function [-Wmaybe-uninitialized]
-------------------------------------------------------------------------------
x86_64-defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../drivers/iommu/intel-iommu.c:1749:25: warning: unused variable 'drhd' [-Wunused-variable]
../drivers/thermal/x86_pkg_temp_thermal.c:414:1: warning: no return statement in function returning non-void [-Wreturn-type]
-------------------------------------------------------------------------------
arm-allmodconfig : PASS, 0 errors, 30 warnings, 0 section mismatches
Warnings:
../arch/arm/mach-cns3xxx/pcie.c:313:1: warning: the frame size of 1080 bytes is larger than 1024 bytes [-Wframe-larger-than=]
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../fs/btrfs/extent_io.c:2166:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
../fs/nfs/nfs4proc.c:3062:10: warning: switch condition has boolean value [-Wswitch-bool]
../drivers/infiniband/ulp/iser/iser_verbs.c:1174:33: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/infiniband/ulp/iser/iser_verbs.c:1175:31: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/infiniband/ulp/iser/iser_verbs.c:1201:14: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../drivers/infiniband/ulp/iser/iser_verbs.c:1206:14: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../include/linux/kernel.h:708:17: warning: comparison of distinct pointer types lacks a cast
../include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
../include/linux/dynamic_debug.h:78:3: warning: unsupported argument to '__builtin_return_address'
../drivers/mtd/chips/cfi_cmdset_0020.c:651:1: warning: the frame size of 1192 bytes is larger than 1024 bytes [-Wframe-larger-than=]
../drivers/pci/host/pcie-xilinx.c:154:22: warning: format '%d' expects argument of type 'int', but argument 4 has type 'long unsigned int' [-Wformat=]
../drivers/net/ethernet/dec/tulip/winbond-840.c:910:2: warning: #warning Processor architecture undefined [-Wcpp]
../drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:303:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:307:11: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
../drivers/net/ethernet/mellanox/mlx5/core/debugfs.c:467:46: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
../arch/arm/include/asm/kmap_types.h:7:0: warning: "KM_TYPE_NR" redefined
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../drivers/tty/sysrq.c:956:33: warning: array subscript is above array bounds [-Warray-bounds]
../include/uapi/linux/swab.h:13:15: warning: integer overflow in expression [-Woverflow]
../drivers/staging/vt6655/device_main.c:2997:1: warning: the frame size of 1312 bytes is larger than 1024 bytes [-Wframe-larger-than=]
-------------------------------------------------------------------------------
arm64-defconfig : PASS, 0 errors, 2 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined, evaluates to 0 [-Wundef]
../net/core/dev.c:2903:1: warning: no return statement in function returning non-void [-Wreturn-type]
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
x86_64-allnoconfig
arm64-allnoconfig
arm-allnoconfig
Hi,
The first patch fixes an issue and the other two do cleanups. I have run
hackbench with these patches and no regressions were noticed.
--
viresh
Viresh Kumar (3):
cpufreq: schedutil: move cached_raw_freq to struct sugov_policy
cpufreq: schedutil: Pass sg_policy to get_next_freq()
cpufreq: schedutil: remove redundant code from
sugov_next_freq_shared()
kernel/sched/cpufreq_schedutil.c | 37 +++++++++++++------------------------
1 file changed, 13 insertions(+), 24 deletions(-)
--
2.7.1.410.g6faf27b
Hi,
This series contains minor fixes/cleanups for thermal cooling drivers.
V1->V2:
- s/dev_warn/dev_err (Rafael)
- Two new patches to make similar (^^) change at other places
Viresh Kumar (5):
thermal: devfreq: Simplify expression
thermal: devfreq_cooling: Replace dev_warn with dev_err
thermal: devfreq: Check OPP for errors
thermal: cpu_cooling: Replace dev_warn with dev_err
thermal: cpu_cooling: Check OPP for errors
drivers/thermal/cpu_cooling.c | 19 +++++++++++++------
drivers/thermal/devfreq_cooling.c | 14 ++++++++++----
2 files changed, 23 insertions(+), 10 deletions(-)
--
2.7.1.410.g6faf27b
version 3:
- try to provide better description of parent_trigger usages
- add one channel to get counter raw value
version 2:
- Do not automatically set parent_trigger attribute on all triggers.
Let driver decide to use it.
- Improve documentation of parent_trigger
- Improve slave modes documentation
Thoses patches add parent_trigger attribute to IIO triggers.
Parent trigger edges or levels could be used to control current
trigger. For example current trigger could be started on parent
rising edges or be enabled only when parent trigger level is high.
Since there is many ways to use parent edges and levels to
control current trigger behavoir an additional custom sysfs
attribute may be needed to describe those control modes.
Similary to what already exist to validate a device, a new (optional)
validate_trigger function is added in iio_trigger structure and should be
filled by drivers.
For STM32 triggers parent trigger edges or levels could used in various ways.
To be able to select them "in_count0_count_mode" attribute is added to STM32
triggers.
When setting a parent trigger on STM32 trigger "trigger_rising_edges" mode
is automatically set so current trigger is clock by the rising edges of it
parent.
Benjamin Gaignard (2):
iio: Allow triggers to be used as parent of others triggers
iio: stm32 trigger: Implement parent trigger feature
.../ABI/testing/sysfs-bus-iio-timer-stm32 | 63 +++++
.../ABI/testing/sysfs-bus-iio-trigger-sysfs | 15 ++
drivers/iio/industrialio-trigger.c | 69 ++++++
drivers/iio/trigger/stm32-timer-trigger.c | 256 ++++++++++++++++++++-
include/linux/iio/trigger.h | 7 +-
include/linux/mfd/stm32-timers.h | 2 +
6 files changed, 405 insertions(+), 7 deletions(-)
--
1.9.1