Hi,
The main feedback I got for the V3 series came from Kevin, who suggested
that we should reuse OPP tables for genpd devices as well, instead of
creating a new table type. And that's what this version is trying to do.
Some platforms have the capability to configure the performance state of
their power domains. The process of configuring the performance state is
pretty much platform dependent and we may need to work with a wide range
of configurables. For some platforms, like Qcom, it can be a positive
integer value alone, while in other cases it can be voltage levels, etc.
The power-domain framework until now was only designed for the idle
state management of the device and this needs to change in order to
reuse the power-domain framework for active state management of the
devices.
This series adapts the genpd and OPP frameworks to allow OPP tables to
be used for the genpd devices as well.
The first 2 patches update the DT bindings of the power-domains and OPP
tables. And the other 7 patches implement the details in QoS, genpd and
OPP frameworks.
This is tested currently by hacking the kernel a bit with virtual
power-domains for the dual A15 exynos platform. The earlier version of
patches was also tested by Rajendra Nayak (Qcom) on *real* Qualcomm
hardware for which this work is getting done. And so this version should
work as well.
Here is sample DT and C code we need to write for platforms:
DT:
---
/ {
domain_opp_table: opp_table0 {
compatible = "operating-points-v2";
opp@1 {
domain-performance-state = <1>;
opp-microvolt = <975000 970000 985000>;
};
opp@2 {
domain-performance-state = <2>;
opp-microvolt = <1075000 1000000 1085000>;
};
};
foo_domain: power-controller@12340000 {
compatible = "foo,power-controller";
reg = <0x12340000 0x1000>;
#power-domain-cells = <0>;
operating-points-v2 = <&domain_opp_table>;
}
cpu0_opp_table: opp_table1 {
compatible = "operating-points-v2";
opp-shared;
opp@1000000000 {
opp-hz = /bits/ 64 <1000000000>;
domain-performance-state = <1>;
};
opp@1100000000 {
opp-hz = /bits/ 64 <1100000000>;
domain-performance-state = <2>;
};
opp@1200000000 {
opp-hz = /bits/ 64 <1200000000>;
domain-performance-state = <2>;
};
};
cpus {
#address-cells = <1>;
#size-cells = <0>;
cpu@0 {
compatible = "arm,cortex-a9";
reg = <0>;
clocks = <&clk_controller 0>;
clock-names = "cpu";
operating-points-v2 = <&cpu0_opp_table>;
power-domains = <&foo_domain>;
};
};
};
Driver code:
------------
static int pd_performance(struct generic_pm_domain *domain, unsigned int state)
{
struct dev_pm_opp *opp;
opp = dev_pm_opp_find_dps(&domain->dev, state, true);
/* Use OPP and state in platform specific way */
return 0;
}
static const struct of_device_id pm_domain_of_match[] __initconst = {
{ .compatible = "foo,genpd", },
{ },
};
static int __init genpd_test_init(void)
{
struct device *dev = get_cpu_device(0);
struct device_node *np;
const struct of_device_id *match;
int n;
int ret;
for_each_matching_node_and_match(np, pm_domain_of_match, &match) {
pd.name = kstrdup_const(strrchr(np->full_name, '/') + 1,
GFP_KERNEL);
if (!pd.name) {
of_node_put(np);
return -ENOMEM;
}
pd.set_performance_state = pd_performance;
pm_genpd_init(&pd, NULL, false);
of_genpd_add_provider_simple(np, &pd);
}
ret = dev_pm_domain_attach(dev, false);
return ret;
}
Pushed here as well:
https://git.linaro.org/people/viresh.kumar/linux.git/log/?h=opp/genpd-perfo…
V3->V4:
- Use OPP table for genpd devices as well.
- Add struct device to genpd, in order to reuse OPP infrastructure.
- Based over: https://marc.info/?l=linux-kernel&m=148972988002317&w=2
- Fixed examples in DT document to have voltage in target,min,max order.
V2->V3:
- Based over latest pm/linux-next
- Bindings and code are merged together
- Lots of updates in bindings
- the performance-states node is present within the power-domain now,
instead of its phandle.
- performance-level property is replaced by "reg".
- domain-performance-state property of the consumers contain an
integer value now instead of phandle.
- Lots of updates to the code as well
- Patch "PM / QOS: Add default case to the switch" is merged with
other patches and the code is changed a bit as well.
- Don't pass 'type' to dev_pm_qos_add_notifier(), rather handle all
notifiers with a single list. A new patch is added for that.
- The OPP framework patch can be applied now and has proper SoB from
me.
- Dropped "PM / domain: Save/restore performance state at runtime
suspend/resume".
- Drop all WARN().
- Tested-by Rajendra nayak.
V1->V2:
- Based over latest pm/linux-next
- It is mostly a resend of what is sent earlier as this series hasn't
got any reviews so far and Rafael suggested that its better I resend
it.
- Only the 4/6 patch got an update, which was shared earlier as reply to
V1 as well. It has got several fixes for taking care of power domain
hierarchy, etc.
--
viresh
Viresh Kumar (9):
PM / OPP: Allow OPP table to be used for power-domains
PM / Domains: Use OPP tables for power-domains
PM / QOS: Keep common notifier list for genpd constraints
PM / QOS: Add DEV_PM_QOS_PERFORMANCE request
PM / OPP: Add support to parse OPP table for power-domains
PM / OPP: Add dev_pm_opp_find_dps() helper
PM / domain: Register for PM QOS performance notifier
PM / Domain: Add struct device to genpd
PM / Domain: Add support to parse domain's OPP table
Documentation/devicetree/bindings/opp/opp.txt | 73 ++++++-
.../devicetree/bindings/power/power_domain.txt | 42 ++++
Documentation/power/pm_qos_interface.txt | 2 +-
drivers/base/power/domain.c | 183 ++++++++++++++--
drivers/base/power/opp/core.c | 229 +++++++++++++++++++--
drivers/base/power/opp/debugfs.c | 9 +-
drivers/base/power/opp/of.c | 80 ++++++-
drivers/base/power/opp/opp.h | 14 ++
drivers/base/power/qos.c | 36 +++-
include/linux/pm_domain.h | 6 +
include/linux/pm_opp.h | 8 +
include/linux/pm_qos.h | 17 ++
kernel/power/qos.c | 2 +-
13 files changed, 646 insertions(+), 55 deletions(-)
--
2.12.0.432.g71c3a4f4ba37
Hi,
Here is the 6th version of the series, which incorporates feedback from
Kevin and Sudeep:
- Use freq/voltage in OPP table as it is for power domain and don't
create "domain-performance-level" property
- Take care of domain providers that provide multiple domains
Here is a brief summary of the problem I am trying to solve.
Some platforms have the capability to configure the performance state of
their power domains. The process of configuring the performance state is
pretty much platform dependent and we may need to work with a wide range
of configurables. For some platforms, like Qcom, it can be a positive
integer value alone, while in other cases it can be voltage levels, etc.
The power-domain framework until now was only designed for the idle
state management of the device and this needs to change in order to
reuse the power-domain framework for active state management of the
devices.
This series adapts the genpd and OPP frameworks to allow OPP tables to
be used for the genpd devices as well.
The first 2 patches update the DT bindings of the power-domains and OPP
tables. And the other 7 patches implement the details in QoS, genpd and
OPP frameworks.
This is tested currently by hacking the kernel a bit with virtual
power-domains for the dual A15 exynos platform. The earlier version of
patches was also tested by Rajendra Nayak (Qcom) on *real* Qualcomm
hardware for which this work is getting done. Hope this version should
work as well.
Here is sample DT and C code we need to write for platforms:
DT:
---
/ {
domain_opp_table: opp_table0 {
compatible = "operating-points-v2";
domain_opp_1: opp-1 {
opp-hz = /bits/ 64 <1>;
opp-microvolt = <975000 970000 985000>;
};
domain_opp_2: opp-2 {
opp-hz = /bits/ 64 <2>;
opp-microvolt = <1075000 1000000 1085000>;
};
};
foo_domain: power-controller@12340000 {
compatible = "foo,power-controller";
reg = <0x12340000 0x1000>;
#power-domain-cells = <0>;
operating-points-v2 = <&domain_opp_table>;
}
cpu0_opp_table: opp_table1 {
compatible = "operating-points-v2";
opp-shared;
opp-1000000000 {
opp-hz = /bits/ 64 <1000000000>;
power-domain-opp = <&domain_opp_1>;
};
opp-1100000000 {
opp-hz = /bits/ 64 <1100000000>;
power-domain-opp = <&domain_opp_2>;
};
opp-1200000000 {
opp-hz = /bits/ 64 <1200000000>;
power-domain-opp = <&domain_opp_2>;
};
};
cpus {
#address-cells = <1>;
#size-cells = <0>;
cpu@0 {
compatible = "arm,cortex-a9";
reg = <0>;
clocks = <&clk_controller 0>;
clock-names = "cpu";
operating-points-v2 = <&cpu0_opp_table>;
power-domains = <&foo_domain>;
};
};
};
Driver code:
------------
static int pd_performance(struct generic_pm_domain *domain, unsigned int state)
{
struct dev_pm_opp *opp;
opp = dev_pm_opp_find_freq_exact(&domain->dev, state, true);
/* Use OPP and state in platform specific way */
return 0;
}
static const struct of_device_id pm_domain_of_match[] __initconst = {
{ .compatible = "foo,genpd", },
{ },
};
static int __init genpd_test_init(void)
{
struct device *dev = get_cpu_device(0);
struct device_node *np;
const struct of_device_id *match;
int n;
int ret;
for_each_matching_node_and_match(np, pm_domain_of_match, &match) {
pd.name = kstrdup_const(strrchr(np->full_name, '/') + 1,
GFP_KERNEL);
if (!pd.name) {
of_node_put(np);
return -ENOMEM;
}
pd.set_performance_state = pd_performance;
pm_genpd_init(&pd, NULL, false);
of_genpd_add_provider_simple(np, &pd);
}
ret = dev_pm_domain_attach(dev, false);
return ret;
}
Pushed here as well:
https://git.linaro.org/people/viresh.kumar/linux.git/log/?h=opp/genpd-perfo…
V5->V6:
- Use freq/voltage in OPP table as it is for power domain and don't
create "domain-performance-level" property
- Create new "power-domain-opp" property for the devices.
- Take care of domain providers that provide multiple domains and extend
"operating-points-v2" property to contain a list of phandles
- Update code according to those bindings.
V4->V5:
- Only 3 patches were resent and 2 of them are Acked from Ulf.
V3->V4:
- Use OPP table for genpd devices as well.
- Add struct device to genpd, in order to reuse OPP infrastructure.
- Based over: https://marc.info/?l=linux-kernel&m=148972988002317&w=2
- Fixed examples in DT document to have voltage in target,min,max order.
V2->V3:
- Based over latest pm/linux-next
- Bindings and code are merged together
- Lots of updates in bindings
- the performance-states node is present within the power-domain now,
instead of its phandle.
- performance-level property is replaced by "reg".
- domain-performance-state property of the consumers contain an
integer value now instead of phandle.
- Lots of updates to the code as well
- Patch "PM / QOS: Add default case to the switch" is merged with
other patches and the code is changed a bit as well.
- Don't pass 'type' to dev_pm_qos_add_notifier(), rather handle all
notifiers with a single list. A new patch is added for that.
- The OPP framework patch can be applied now and has proper SoB from
me.
- Dropped "PM / domain: Save/restore performance state at runtime
suspend/resume".
- Drop all WARN().
- Tested-by Rajendra nayak.
V1->V2:
- Based over latest pm/linux-next
- It is mostly a resend of what is sent earlier as this series hasn't
got any reviews so far and Rafael suggested that its better I resend
it.
- Only the 4/6 patch got an update, which was shared earlier as reply to
V1 as well. It has got several fixes for taking care of power domain
hierarchy, etc.
--
viresh
Viresh Kumar (9):
PM / OPP: Introduce "power-domain-opp" property
PM / Domains: Allow OPP table to be used for power-domains
PM / QOS: Keep common notifier list for genpd constraints
PM / QOS: Add DEV_PM_QOS_PERFORMANCE request
PM / OPP: Add support to parse "power-domain-opp" property
PM / OPP: Implement dev_pm_opp_of_add_table_indexed()
PM / domain: Register PM QOS performance notifier
PM / Domain: Add struct device to genpd
PM / Domain: Add support to parse domain's OPP table
Documentation/devicetree/bindings/opp/opp.txt | 74 ++++++-
.../devicetree/bindings/power/power_domain.txt | 106 ++++++++++
Documentation/power/pm_qos_interface.txt | 2 +-
drivers/base/power/domain.c | 222 +++++++++++++++++++--
drivers/base/power/opp/core.c | 72 +++++++
drivers/base/power/opp/debugfs.c | 3 +
drivers/base/power/opp/of.c | 123 +++++++++++-
drivers/base/power/opp/opp.h | 12 ++
drivers/base/power/qos.c | 36 +++-
include/linux/pm_domain.h | 6 +
include/linux/pm_opp.h | 6 +
include/linux/pm_qos.h | 16 ++
kernel/power/qos.c | 2 +-
13 files changed, 641 insertions(+), 39 deletions(-)
--
2.12.0.432.g71c3a4f4ba37
Tree/Branch: v3.18.51-rt57
Git describe: v3.18.51-rt57
Commit: 6a22e2fa74 Linux 3.18.51-rt57
Build Time: 94 min 8 sec
Passed: 9 / 9 (100.00 %)
Failed: 0 / 9 ( 0.00 %)
Errors: 0
Warnings: 29
Section Mismatches: 0
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
11 warnings 0 mismatches : arm64-allmodconfig
4 warnings 0 mismatches : arm-multi_v5_defconfig
5 warnings 0 mismatches : arm-multi_v7_defconfig
3 warnings 0 mismatches : x86_64-defconfig
27 warnings 0 mismatches : arm-allmodconfig
2 warnings 0 mismatches : arm64-defconfig
-------------------------------------------------------------------------------
Warnings Summary: 29
6 ../net/core/dev.c:2899: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 ../drivers/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-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 ../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/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/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/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, 11 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:2899: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/scsi/ips.c:210:2: warning: #warning "This driver has only been tested on the x86/ia64/x86_64 platforms" [-Wcpp]
../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:2899: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, 5 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../net/core/dev.c:2899: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]
-------------------------------------------------------------------------------
x86_64-defconfig : PASS, 0 errors, 3 warnings, 0 section mismatches
Warnings:
../block/blk-core.c:103:5: warning: "CONFIG_PREEMPT_RT_FULL" is not defined [-Wundef]
../net/core/dev.c:2899:1: warning: no return statement in function returning non-void [-Wreturn-type]
../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, 27 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]
../net/core/dev.c:2899:1: warning: no return statement in function returning non-void [-Wreturn-type]
../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/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:2899: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.12.73-rt98
Git describe: v3.12.73-rt98
Commit: 98a5dd564f Linux 3.12.73-rt98
Build Time: 50 min 44 sec
Passed: 7 / 8 ( 87.50 %)
Failed: 1 / 8 ( 12.50 %)
Errors: 9
Warnings: 186
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
152 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
14 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: 186
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/ipv4/tcp_ipv4.c:580:30: warning: 'tcp_sk_lock' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable-rt/net/ipv4/ping.c:1146: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/kernel/workqueue.c:333:30: warning: 'pendingb_lock' defined but not used [-Wunused-const-variable=]
/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/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, 152 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/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/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/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/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/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/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/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/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: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/net/core/skbuff.c:358:30: warning: 'netdev_alloc_lock' 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/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/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/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/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/hwmon/nct6775.c:580:18: warning: 'NCT6106_REG_TOLERANCE_H' 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/input/joystick/analog.c:171:2: warning: #warning Precise timer not defined for this architecture. [-Wcpp]
/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/fs/fscache/object.c:34:25: warning: 'fscache_osm_CREATE_OBJECT' defined but not used [-Wunused-const-variable=]
/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/ipv4/tcp_ipv4.c:580: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/net/ipv4/ping.c:1146:36: warning: 'ping_v4_seq_ops' 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/fs/ncpfs/dir.c:860:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/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/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/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/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/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/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/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/netfilter/xt_recent.c:103:37: warning: 'recent_old_fops' 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/net/usb/r815x.c:197:33: warning: 'r8152_info' 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/power/reset/xgene-reboot.c:80:17: warning: assignment from incompatible pointer type [-Wincompatible-pointer-types]
/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/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/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/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/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/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/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/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/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/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/ti/wlcore/spi.c:321:1: warning: the frame size of 9728 bytes is larger than 2048 bytes [-Wframe-larger-than=]
/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/include/linux/compiler-gcc.h:136:2: warning: large integer implicitly truncated to unsigned type [-Woverflow]
/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/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/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/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/rts5139/rts51x.c:204:13: warning: 'rts51x_try_to_enter_ss' defined but not used [-Wunused-function]
/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/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/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/vt6656/mib.c:385:4: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
/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/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/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]
-------------------------------------------------------------------------------
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/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/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/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/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/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/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/video/aty/radeon_pm.c:1718:13: warning: 'radeon_reinitialize_M10' defined but not used [-Wunused-function]
/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/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/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, 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, 14 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/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/lib/radix-tree.c:97:30: warning: 'radix_tree_preloads_lock' 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/net/ipv4/tcp_ipv4.c:580: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:1146:36: warning: 'ping_v4_seq_ops' defined but not used [-Wunused-const-variable=]
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
Tree/Branch: v3.12.74
Git describe: v3.12.74
Commit: 8c26eee9ed Linux 3.12.74
Build Time: 26 min 11 sec
Passed: 7 / 8 ( 87.50 %)
Failed: 1 / 8 ( 12.50 %)
Errors: 9
Warnings: 179
Section Mismatches: 0
Failed defconfigs:
arm64-allmodconfig
Errors:
arm64-allmodconfig
/home/broonie/build/linux-stable/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl330_ids_device_table' isn't known
/home/broonie/build/linux-stable/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/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/include/linux/module.h:139:40: error: storage size of '__mod_amba__mmci_ids_device_table' isn't known
/home/broonie/build/linux-stable/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl030_ids_device_table' isn't known
/home/broonie/build/linux-stable/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl031_ids_device_table' isn't known
/home/broonie/build/linux-stable/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl022_ids_device_table' isn't known
/home/broonie/build/linux-stable/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl010_ids_device_table' isn't known
/home/broonie/build/linux-stable/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):
146 warnings 0 mismatches : arm64-allmodconfig
1 warnings 0 mismatches : arm-multi_v7_defconfig
37 warnings 0 mismatches : arm-allmodconfig
8 warnings 0 mismatches : arm64-defconfig
-------------------------------------------------------------------------------
Errors summary: 9
1 /home/broonie/build/linux-stable/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/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/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/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/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/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/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/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/include/linux/module.h:139:40: error: storage size of '__mod_amba__amba_kmi_idtable_device_table' isn't known
Warnings Summary: 179
2 /home/broonie/build/linux-stable/net/ipv4/ping.c:1147:36: warning: 'ping_v4_seq_ops' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable/net/core/net-sysfs.c:30:19: warning: 'fmt_long_hex' defined but not used [-Wunused-const-variable=]
2 /home/broonie/build/linux-stable/kernel/cpu.c:185:13: warning: 'cpu_notify_nofail' defined but not used [-Wunused-function]
2 /home/broonie/build/linux-stable/kernel/cgroup.c:1276:5: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses]
2 /home/broonie/build/linux-stable/include/linux/ftrace.h:615:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
2 /home/broonie/build/linux-stable/include/linux/ftrace.h:614:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
2 /home/broonie/build/linux-stable/include/linux/compiler-gcc.h:136:2: warning: large integer implicitly truncated to unsigned type [-Woverflow]
2 /home/broonie/build/linux-stable/fs/nfs/nfs4proc.c:2925:10: warning: switch condition has boolean value [-Wswitch-bool]
2 /home/broonie/build/linux-stable/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/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/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/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/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/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/sound/soc/codecs/wm8991.c:126:27: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/sound/soc/codecs/wm8991.c:106:27: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/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/sound/soc/codecs/wm8990.c:126:35: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/sound/soc/codecs/wm8990.c:118:35: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/sound/soc/codecs/wm8988.c:273:30: warning: 'wm8988_rline_enum' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/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/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/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/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/sound/soc/codecs/wm8737.c:116:30: warning: 'high_3d' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/sound/soc/codecs/tlv320aic23.c:56:30: warning: 'tlv320aic23_rec_src' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/sound/soc/codecs/ml26124.c:71:35: warning: 'ngth' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/sound/soc/codecs/max98090.c:876:30: warning: 'max98090_pa2en_enum' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/sound/soc/codecs/max98090.c:872:30: warning: 'max98090_pa1en_enum' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/sound/soc/codecs/max98090.c:389:35: warning: 'max98090_alc_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/sound/soc/codecs/max98090.c:387:35: warning: 'max98090_sidetone_tlv' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/sound/soc/codecs/cs42l73.c:383:38: warning: 'xsp_output_mux' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/sound/soc/codecs/cs42l73.c:380:38: warning: 'vsp_output_mux' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/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/net/wireless/nl80211.c:393:1: warning: 'nl80211_wowlan_tcp_policy' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/net/wireless/nl80211.c:380:1: warning: 'nl80211_wowlan_policy' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/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/net/sched/sch_choke.c:589:37: warning: 'choke_class_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/net/netfilter/xt_recent.c:103:37: warning: 'recent_old_fops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/net/mac80211/debugfs_sta.c:35:37: warning: 'sta_aid_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/net/mac80211/debugfs.c:70:23: warning: 'rate_ctrl_alg_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/net/ipv4/arp.c:152:31: warning: 'arp_broken_ops' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/net/dcb/dcbnl.c:183:32: warning: 'dcbnl_ieee_app' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/kernel/modsign_pubkey.c:28:31: warning: 'annoy_ccache' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/fs/ncpfs/dir.c:860:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable/fs/fscache/object.c:34:25: warning: 'fscache_osm_CREATE_OBJECT' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/fs/cifs/netmisc.c:133:40: warning: 'mapping_table_ERRHRD' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/fs/cifs/cifsacl.c:43:30: warning: 'sid_user' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/fs/afs/cmservice.c:78:35: warning: 'afs_SRXCBProbeUuid' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/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/drivers/video/omap2/displays-new/panel-sony-acx565akm.c:608:25: warning: unused variable 'ddata' [-Wunused-variable]
1 /home/broonie/build/linux-stable/drivers/video/backlight/s6e63m0.c:331:29: warning: 'seq_elvss_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/drivers/video/backlight/s6e63m0.c:317:29: warning: 'seq_acl_off' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/drivers/video/backlight/lms501kf03.c:96:28: warning: 'seq_up_dn' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/drivers/video/backlight/lms501kf03.c:100:28: warning: 'seq_sleep_in' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:92:29: warning: 'seq_swreset' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:414:29: warning: 'seq_el_on' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:402:29: warning: 'seq_els_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:390:29: warning: 'seq_gls_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/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/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/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/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/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/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/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/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/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/drivers/video/backlight/ld9040.c:284:29: warning: 'seq_vl3_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/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/drivers/video/backlight/ld9040.c:264:29: warning: 'seq_vl2_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:254:29: warning: 'seq_vl1_en' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/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/drivers/video/backlight/ld9040.c:212:29: warning: 'seq_pwr_ctrl' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:187:29: warning: 'seq_apon' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/drivers/video/aty/radeon_pm.c:1718:13: warning: 'radeon_reinitialize_M10' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable/drivers/usb/storage/realtek_cr.c:699:13: warning: 'fw5895_init' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable/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/drivers/usb/serial/garmin_gps.c:205:28: warning: 'PRIVATE_REQ' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/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/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/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/drivers/usb/gadget/nokia.c:45:19: warning: 'product_nokia' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/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/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/drivers/usb/gadget/gmidi.c:47:19: warning: 'shortname' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/drivers/tty/serial/efm32-uart.c:834:20: warning: 'efm32_uart_exit' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable/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/drivers/staging/vt6656/usbpipe.c:174:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable/drivers/staging/vt6656/usbpipe.c:115:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable/drivers/staging/vt6656/mib.c:385:4: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable/drivers/staging/vt6656/main_usb.c:1210:7: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable/drivers/staging/vt6656/iwctl.c:1825:25: warning: 'iwctl_private_handler' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/drivers/staging/vt6656/bssdb.c:506:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable/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/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/drivers/staging/sm7xxfb/sm7xxfb.c:117:19: warning: 'sm7xx_vga_setup' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable/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/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/drivers/staging/rtl8712/ieee80211.c:78:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable/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/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/drivers/staging/frontier/tranzport.c:276:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable/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/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/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/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/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/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/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/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/drivers/spi/spi-pl022.c:281:31: warning: large integer implicitly truncated to unsigned type [-Woverflow]
1 /home/broonie/build/linux-stable/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/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/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/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/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/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/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/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/drivers/regulator/pcap-regulator.c:93:27: warning: 'SW3_table' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/drivers/power/reset/xgene-reboot.c:80:17: warning: assignment from incompatible pointer type [-Wincompatible-pointer-types]
1 /home/broonie/build/linux-stable/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/drivers/net/usb/usbnet.c:85:19: warning: 'driver_name' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/drivers/net/usb/r815x.c:197:33: warning: 'r8152_info' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/drivers/net/ethernet/dec/tulip/winbond-840.c:911:2: warning: #warning Processor architecture undefined [-Wcpp]
1 /home/broonie/build/linux-stable/drivers/net/ethernet/amd/nmclan_cs.c:625:3: warning: 'pcmcia_request_exclusive_irq' is deprecated [-Wdeprecated-declarations]
1 /home/broonie/build/linux-stable/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/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/drivers/misc/bh1770glc.c:184:17: warning: 'prox_curr_ma' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/drivers/misc/apds990x.c:191:17: warning: 'ir_currents' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/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/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/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/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/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/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/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/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/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/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/drivers/media/radio/radio-shark2.c:240:13: warning: 'shark_resume_leds' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable/drivers/media/radio/radio-shark.c:274:13: warning: 'shark_resume_leds' defined but not used [-Wunused-function]
1 /home/broonie/build/linux-stable/drivers/media/dvb-frontends/drxk_hard.c:2223:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable/drivers/media/dvb-frontends/drxd_hard.c:2695:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable/drivers/media/dvb-frontends/drxd_hard.c:2635:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
1 /home/broonie/build/linux-stable/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/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/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/drivers/input/joystick/analog.c:171:2: warning: #warning Precise timer not defined for this architecture. [-Wcpp]
1 /home/broonie/build/linux-stable/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/drivers/iio/adc/ad7793.c:449:37: warning: 'ad7797_attribute_group' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/drivers/hwmon/nct6775.c:580:18: warning: 'NCT6106_REG_TOLERANCE_H' defined but not used [-Wunused-const-variable=]
1 /home/broonie/build/linux-stable/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/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/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/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/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/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/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/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/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/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-allmodconfig : FAIL, 9 errors, 146 warnings, 0 section mismatches
Errors:
/home/broonie/build/linux-stable/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl330_ids_device_table' isn't known
/home/broonie/build/linux-stable/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/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/include/linux/module.h:139:40: error: storage size of '__mod_amba__mmci_ids_device_table' isn't known
/home/broonie/build/linux-stable/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl030_ids_device_table' isn't known
/home/broonie/build/linux-stable/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl031_ids_device_table' isn't known
/home/broonie/build/linux-stable/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl022_ids_device_table' isn't known
/home/broonie/build/linux-stable/include/linux/module.h:139:40: error: storage size of '__mod_amba__pl010_ids_device_table' isn't known
/home/broonie/build/linux-stable/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/kernel/cpu.c:185:13: warning: 'cpu_notify_nofail' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable/include/linux/ftrace.h:614:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable/include/linux/ftrace.h:615:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable/kernel/modsign_pubkey.c:28:31: warning: 'annoy_ccache' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/fs/afs/cmservice.c:78:35: warning: 'afs_SRXCBProbeUuid' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/kernel/cgroup.c:1276:5: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses]
/home/broonie/build/linux-stable/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/fs/cifs/netmisc.c:133:40: warning: 'mapping_table_ERRHRD' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/fs/cifs/cifsacl.c:43:30: warning: 'sid_user' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/sound/soc/codecs/cs42l73.c:383:38: warning: 'xsp_output_mux' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/sound/soc/codecs/cs42l73.c:380:38: warning: 'vsp_output_mux' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/sound/soc/codecs/max98090.c:876:30: warning: 'max98090_pa2en_enum' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/sound/soc/codecs/max98090.c:872:30: warning: 'max98090_pa1en_enum' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/sound/soc/codecs/max98090.c:389:35: warning: 'max98090_alc_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/sound/soc/codecs/max98090.c:387:35: warning: 'max98090_sidetone_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/sound/soc/codecs/ml26124.c:71:35: warning: 'ngth' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/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/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/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/drivers/dma/pl330.c:2317:21: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable/sound/soc/codecs/tlv320aic23.c:56:30: warning: 'tlv320aic23_rec_src' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/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/sound/soc/codecs/wm8737.c:116:30: warning: 'high_3d' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/sound/soc/codecs/wm8900.c:451:38: warning: 'wm8900_dapm_routput2_control' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/sound/soc/codecs/wm8900.c:448:38: warning: 'wm8900_dapm_loutput2_control' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/sound/soc/codecs/wm8974.c:202:38: warning: 'wm8974_mic_boost_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/sound/soc/codecs/wm8974.c:198:38: warning: 'wm8974_aux_boost_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/sound/soc/codecs/wm8988.c:273:30: warning: 'wm8988_rline_enum' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/sound/soc/codecs/wm8990.c:527:38: warning: 'wm8990_dapm_rxvoice_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/sound/soc/codecs/wm8990.c:126:35: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/sound/soc/codecs/wm8990.c:118:35: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/sound/soc/codecs/wm8991.c:526:38: warning: 'wm8991_dapm_rxvoice_controls' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/sound/soc/codecs/wm8991.c:126:27: warning: 'out_omix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/sound/soc/codecs/wm8991.c:106:27: warning: 'rec_mix_tlv' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/fs/fscache/object.c:34:25: warning: 'fscache_osm_CREATE_OBJECT' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/net/dcb/dcbnl.c:183:32: warning: 'dcbnl_ieee_app' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/net/core/net-sysfs.c:30:19: warning: 'fmt_long_hex' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/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/drivers/iio/adc/ad7793.c:449:37: warning: 'ad7797_attribute_group' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/hwmon/nct6775.c:580:18: warning: 'NCT6106_REG_TOLERANCE_H' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/input/joystick/analog.c:171:2: warning: #warning Precise timer not defined for this architecture. [-Wcpp]
/home/broonie/build/linux-stable/fs/ncpfs/dir.c:860:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable/net/ipv4/ping.c:1147:36: warning: 'ping_v4_seq_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/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/drivers/media/dvb-frontends/drxd_hard.c:2635:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable/drivers/media/dvb-frontends/drxd_hard.c:2695:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable/drivers/media/dvb-frontends/drxk_hard.c:2223:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable/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/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/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/drivers/mfd/tps65217.c:173:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
/home/broonie/build/linux-stable/drivers/misc/bh1770glc.c:184:17: warning: 'prox_curr_ma' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/misc/apds990x.c:191:17: warning: 'ir_currents' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/media/radio/radio-shark.c:274:13: warning: 'shark_resume_leds' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable/drivers/media/radio/radio-shark2.c:240:13: warning: 'shark_resume_leds' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable/net/mac80211/debugfs.c:70:23: warning: 'rate_ctrl_alg_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/net/mac80211/debugfs_sta.c:35:37: warning: 'sta_aid_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/net/netfilter/xt_recent.c:103:37: warning: 'recent_old_fops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/media/tuners/r820t.c:349:18: warning: 'r820t_mixer_gain_steps' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/media/tuners/r820t.c:345:18: warning: 'r820t_lna_gain_steps' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/power/reset/xgene-reboot.c:80:17: warning: assignment from incompatible pointer type [-Wincompatible-pointer-types]
/home/broonie/build/linux-stable/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/drivers/regulator/pcap-regulator.c:93:27: warning: 'SW3_table' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/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/drivers/media/usb/gspca/ov519.c:375:37: warning: 'ovfx2_cif_mode' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/media/usb/gspca/ov519.c:363:37: warning: 'ovfx2_vga_mode' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/media/usb/usbvision/usbvision-core.c:94:18: warning: 'min_imgheight' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/media/usb/usbvision/usbvision-core.c:93:18: warning: 'min_imgwidth' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/media/usb/usbvision/usbvision-core.c:92:18: warning: 'max_imgheight' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/media/usb/usbvision/usbvision-core.c:91:18: warning: 'max_imgwidth' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/net/usb/r815x.c:197:33: warning: 'r8152_info' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/net/usb/usbnet.c:85:19: warning: 'driver_name' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/net/sched/sch_choke.c:589:37: warning: 'choke_class_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/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/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/drivers/spi/spi-pl022.c:281:31: warning: large integer implicitly truncated to unsigned type [-Woverflow]
/home/broonie/build/linux-stable/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/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/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/net/wireless/nl80211.c:393:1: warning: 'nl80211_wowlan_tcp_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/net/wireless/nl80211.c:380:1: warning: 'nl80211_wowlan_policy' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/include/linux/compiler-gcc.h:136:2: warning: large integer implicitly truncated to unsigned type [-Woverflow]
/home/broonie/build/linux-stable/drivers/staging/frontier/tranzport.c:276:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable/include/linux/compiler-gcc.h:136:2: warning: large integer implicitly truncated to unsigned type [-Woverflow]
/home/broonie/build/linux-stable/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/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/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/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/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/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/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/drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.c:2188:45: warning: iteration 14 invokes undefined behavior [-Waggressive-loop-optimizations]
/home/broonie/build/linux-stable/drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.c:2190:42: warning: array subscript is above array bounds [-Warray-bounds]
/home/broonie/build/linux-stable/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/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/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/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/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/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/drivers/staging/rtl8712/ieee80211.c:78:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable/drivers/staging/rts5139/rts51x.c:204:13: warning: 'rts51x_try_to_enter_ss' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable/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/drivers/staging/vt6656/main_usb.c:1210:7: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable/drivers/staging/vt6656/bssdb.c:506:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable/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/drivers/net/wireless/rtlwifi/efuse.c:34:17: warning: 'MAX_PGPKT_SIZE' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/staging/vt6656/mib.c:385:4: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable/drivers/staging/vt6656/iwctl.c:1825:25: warning: 'iwctl_private_handler' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/staging/vt6656/usbpipe.c:115:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable/drivers/staging/vt6656/usbpipe.c:174:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
/home/broonie/build/linux-stable/drivers/net/wireless/ti/wlcore/spi.c:321:1: warning: the frame size of 9728 bytes is larger than 2048 bytes [-Wframe-larger-than=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:414:29: warning: 'seq_el_on' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:402:29: warning: 'seq_els_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:390:29: warning: 'seq_gls_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:378:29: warning: 'seq_sd_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:366:29: warning: 'seq_gam_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:356:29: warning: 'seq_vbl_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:346:29: warning: 'seq_vbh_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:334:29: warning: 'seq_vint_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:324:29: warning: 'seq_vmos_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:314:29: warning: 'seq_vgl_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:304:29: warning: 'seq_vgh_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:294:29: warning: 'seq_vreg1_amp_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:284:29: warning: 'seq_vl3_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:274:29: warning: 'seq_vci1_2nd_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:264:29: warning: 'seq_vl2_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:254:29: warning: 'seq_vl1_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:244:29: warning: 'seq_vci1_1st_en' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:212:29: warning: 'seq_pwr_ctrl' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:187:29: warning: 'seq_apon' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/ld9040.c:92:29: warning: 'seq_swreset' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/lms501kf03.c:100:28: warning: 'seq_sleep_in' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/lms501kf03.c:96:28: warning: 'seq_up_dn' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/s6e63m0.c:331:29: warning: 'seq_elvss_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/video/backlight/s6e63m0.c:317:29: warning: 'seq_acl_off' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/usb/gadget/gmidi.c:47:19: warning: 'shortname' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/usb/gadget/nokia.c:45:19: warning: 'product_nokia' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/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/drivers/usb/gadget/mv_udc_core.c:62:19: warning: 'driver_desc' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/usb/gadget/mv_u3d_core.c:39:19: warning: 'driver_desc' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/drivers/usb/storage/realtek_cr.c:699:13: warning: 'fw5895_init' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable/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/drivers/usb/serial/garmin_gps.c:205:28: warning: 'PRIVATE_REQ' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/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/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/drivers/usb/serial/garmin_gps.c:195:28: warning: 'GARMIN_APP_LAYER_REPLY' defined but not used [-Wunused-const-variable=]
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 1 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable/fs/nfs/nfs4proc.c:2925:10: warning: switch condition has boolean value [-Wswitch-bool]
-------------------------------------------------------------------------------
arm-allmodconfig : PASS, 0 errors, 37 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable/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/drivers/ata/pata_hpt366.c:377:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable/drivers/ata/pata_hpt366.c:380:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable/drivers/ata/pata_hpt366.c:383:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
/home/broonie/build/linux-stable/fs/nfs/nfs4proc.c:2925:10: warning: switch condition has boolean value [-Wswitch-bool]
/home/broonie/build/linux-stable/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/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/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/drivers/net/ethernet/amd/nmclan_cs.c:625:3: warning: 'pcmcia_request_exclusive_irq' is deprecated [-Wdeprecated-declarations]
/home/broonie/build/linux-stable/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/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/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/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/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/drivers/net/ethernet/dec/tulip/winbond-840.c:911:2: warning: #warning Processor architecture undefined [-Wcpp]
/home/broonie/build/linux-stable/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/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/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/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/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/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/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/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/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/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/drivers/tty/serial/efm32-uart.c:834:20: warning: 'efm32_uart_exit' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable/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/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/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/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/drivers/video/aty/radeon_pm.c:1718:13: warning: 'radeon_reinitialize_M10' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable/drivers/staging/sm7xxfb/sm7xxfb.c:117:19: warning: 'sm7xx_vga_setup' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable/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/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/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/drivers/video/omap2/displays-new/panel-sony-acx565akm.c:608:25: warning: unused variable 'ddata' [-Wunused-variable]
/home/broonie/build/linux-stable/Documentation/misc-devices/mei/mei-amt-version.c:103:5: warning: 'acmd.fd' is used uninitialized in this function [-Wuninitialized]
-------------------------------------------------------------------------------
arm64-defconfig : PASS, 0 errors, 8 warnings, 0 section mismatches
Warnings:
/home/broonie/build/linux-stable/kernel/cpu.c:185:13: warning: 'cpu_notify_nofail' defined but not used [-Wunused-function]
/home/broonie/build/linux-stable/include/linux/ftrace.h:614:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable/include/linux/ftrace.h:615:40: warning: calling '__builtin_return_address' with a nonzero argument is unsafe [-Wframe-address]
/home/broonie/build/linux-stable/kernel/cgroup.c:1276:5: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses]
/home/broonie/build/linux-stable/net/core/net-sysfs.c:30:19: warning: 'fmt_long_hex' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/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/net/ipv4/arp.c:152:31: warning: 'arp_broken_ops' defined but not used [-Wunused-const-variable=]
/home/broonie/build/linux-stable/net/ipv4/ping.c:1147:36: warning: 'ping_v4_seq_ops' defined but not used [-Wunused-const-variable=]
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
x86_64-allnoconfig
arm64-allnoconfig
arm-allnoconfig
x86_64-defconfig
Tree/Branch: master
Git describe: v4.11-11413-g2868b25
Commit: 2868b2513a Merge tag 'linux-kselftest-4.12-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest
Build Time: 115 min 41 sec
Passed: 10 / 10 (100.00 %)
Failed: 0 / 10 ( 0.00 %)
Errors: 0
Warnings: 4
Section Mismatches: 0
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
4 warnings 0 mismatches : arm-multi_v7_defconfig
-------------------------------------------------------------------------------
Warnings Summary: 4
1 arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
1 arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
1 arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
1 arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
arm64-allnoconfig
arm64-allmodconfig
arm-multi_v5_defconfig
x86_64-defconfig
arm-allmodconfig
arm-allnoconfig
x86_64-allnoconfig
arm-multi_v4t_defconfig
arm64-defconfig
Tree/Branch: master
Git describe: v4.11-11382-g3341713
Commit: 3341713c67 Merge tags 'for-linus' and 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma
Build Time: 217 min 26 sec
Passed: 10 / 10 (100.00 %)
Failed: 0 / 10 ( 0.00 %)
Errors: 0
Warnings: 4
Section Mismatches: 0
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
4 warnings 0 mismatches : arm-multi_v7_defconfig
-------------------------------------------------------------------------------
Warnings Summary: 4
1 arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
1 arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
1 arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
1 arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
arm64-allnoconfig
arm64-allmodconfig
arm-multi_v5_defconfig
x86_64-defconfig
arm-allmodconfig
arm-allnoconfig
x86_64-allnoconfig
arm-multi_v4t_defconfig
arm64-defconfig
close failed in file object destructor:
sys.excepthook is missing
lost sys.stderr
Tree/Branch: master
Git describe: v4.11-11014-g2d3e486
Commit: 2d3e4866de Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
Build Time: 118 min 19 sec
Passed: 10 / 10 (100.00 %)
Failed: 0 / 10 ( 0.00 %)
Errors: 0
Warnings: 4
Section Mismatches: 0
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
4 warnings 0 mismatches : arm-multi_v7_defconfig
-------------------------------------------------------------------------------
Warnings Summary: 4
1 arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
1 arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
1 arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
1 arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
arm64-allnoconfig
arm64-allmodconfig
arm-multi_v5_defconfig
x86_64-defconfig
arm-allmodconfig
arm-allnoconfig
x86_64-allnoconfig
arm-multi_v4t_defconfig
arm64-defconfig
close failed in file object destructor:
sys.excepthook is missing
lost sys.stderr
Tree/Branch: master
Git describe: v4.11-10751-g70ef8f0
Commit: 70ef8f0d37 Merge tag 'for-f2fs-4.12' of git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs
Build Time: 115 min 34 sec
Passed: 10 / 10 (100.00 %)
Failed: 0 / 10 ( 0.00 %)
Errors: 0
Warnings: 4
Section Mismatches: 0
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
4 warnings 0 mismatches : arm-multi_v7_defconfig
-------------------------------------------------------------------------------
Warnings Summary: 4
1 arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
1 arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
1 arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
1 arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
arm64-allnoconfig
arm64-allmodconfig
arm-multi_v5_defconfig
x86_64-defconfig
arm-allmodconfig
arm-allnoconfig
x86_64-allnoconfig
arm-multi_v4t_defconfig
arm64-defconfig
Tree/Branch: master
Git describe: v4.11-10603-g13e0988
Commit: 13e0988140 docs: complete bumping minimal GNU Make version to 3.81
Build Time: 116 min 35 sec
Passed: 10 / 10 (100.00 %)
Failed: 0 / 10 ( 0.00 %)
Errors: 0
Warnings: 4
Section Mismatches: 0
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
4 warnings 0 mismatches : arm-multi_v7_defconfig
-------------------------------------------------------------------------------
Warnings Summary: 4
1 arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
1 arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
1 arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
1 arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
arm64-allnoconfig
arm64-allmodconfig
arm-multi_v5_defconfig
x86_64-defconfig
arm-allmodconfig
arm-allnoconfig
x86_64-allnoconfig
arm-multi_v4t_defconfig
arm64-defconfig
close failed in file object destructor:
sys.excepthook is missing
lost sys.stderr
Tree/Branch: master
Git describe: v4.11-10602-gfe7a719
Commit: fe7a719b30 Merge branch 'for-next' of git://git.samba.org/sfrench/cifs-2.6
Build Time: 115 min 53 sec
Passed: 10 / 10 (100.00 %)
Failed: 0 / 10 ( 0.00 %)
Errors: 0
Warnings: 4
Section Mismatches: 0
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
4 warnings 0 mismatches : arm-multi_v7_defconfig
-------------------------------------------------------------------------------
Warnings Summary: 4
1 arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
1 arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
1 arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
1 arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
arm64-allnoconfig
arm64-allmodconfig
arm-multi_v5_defconfig
x86_64-defconfig
arm-allmodconfig
arm-allnoconfig
x86_64-allnoconfig
arm-multi_v4t_defconfig
arm64-defconfig
close failed in file object destructor:
sys.excepthook is missing
lost sys.stderr
Tree/Branch: master
Git describe: v4.11-10503-g394e4f5
Commit: 394e4f5d58 initramfs: avoid "label at end of compound statement" error
Build Time: 116 min 31 sec
Passed: 10 / 10 (100.00 %)
Failed: 0 / 10 ( 0.00 %)
Errors: 0
Warnings: 4
Section Mismatches: 0
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
4 warnings 0 mismatches : arm-multi_v7_defconfig
-------------------------------------------------------------------------------
Warnings Summary: 4
1 arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
1 arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
1 arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
1 arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
arm64-allnoconfig
arm64-allmodconfig
arm-multi_v5_defconfig
x86_64-defconfig
arm-allmodconfig
arm-allnoconfig
x86_64-allnoconfig
arm-multi_v4t_defconfig
arm64-defconfig
Tree/Branch: master
Git describe: v4.11-10502-g3ef2bc0
Commit: 3ef2bc099d Merge tag 'devicetree-for-4.12' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux
Build Time: 116 min 32 sec
Passed: 9 / 10 ( 90.00 %)
Failed: 1 / 10 ( 10.00 %)
Errors: 1
Warnings: 4
Section Mismatches: 0
Failed defconfigs:
arm-multi_v7_defconfig
Errors:
arm-multi_v7_defconfig
../init/initramfs.c:644:2: error: label at end of compound statement
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
4 warnings 0 mismatches : arm-multi_v7_defconfig
-------------------------------------------------------------------------------
Errors summary: 1
1 ../init/initramfs.c:644:2: error: label at end of compound statement
Warnings Summary: 4
1 arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
1 arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
1 arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
1 arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : FAIL, 1 errors, 4 warnings, 0 section mismatches
Errors:
../init/initramfs.c:644:2: error: label at end of compound statement
Warnings:
arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
arm64-allnoconfig
arm64-allmodconfig
arm-multi_v5_defconfig
x86_64-defconfig
arm-allmodconfig
arm-allnoconfig
x86_64-allnoconfig
arm-multi_v4t_defconfig
arm64-defconfig
Tree/Branch: master
Git describe: v4.11-8897-g1a5fb64
Commit: 1a5fb64fee Merge tag 'gfs2-4.12.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2
Build Time: 115 min 28 sec
Passed: 9 / 10 ( 90.00 %)
Failed: 1 / 10 ( 10.00 %)
Errors: 1
Warnings: 4
Section Mismatches: 0
Failed defconfigs:
arm-multi_v7_defconfig
Errors:
arm-multi_v7_defconfig
../init/initramfs.c:644:2: error: label at end of compound statement
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
4 warnings 0 mismatches : arm-multi_v7_defconfig
-------------------------------------------------------------------------------
Errors summary: 1
1 ../init/initramfs.c:644:2: error: label at end of compound statement
Warnings Summary: 4
1 arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
1 arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
1 arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
1 arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : FAIL, 1 errors, 4 warnings, 0 section mismatches
Errors:
../init/initramfs.c:644:2: error: label at end of compound statement
Warnings:
arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
arm64-allnoconfig
arm64-allmodconfig
arm-multi_v5_defconfig
x86_64-defconfig
arm-allmodconfig
arm-allnoconfig
x86_64-allnoconfig
arm-multi_v4t_defconfig
arm64-defconfig
Tree/Branch: master
Git describe: v4.11-8863-gab182e6
Commit: ab182e67ec Merge tag 'arm64-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux
Build Time: 115 min 47 sec
Passed: 10 / 10 (100.00 %)
Failed: 0 / 10 ( 0.00 %)
Errors: 0
Warnings: 4
Section Mismatches: 0
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
4 warnings 0 mismatches : arm-multi_v7_defconfig
-------------------------------------------------------------------------------
Warnings Summary: 4
1 arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
1 arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
1 arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
1 arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
arm64-allnoconfig
arm64-allmodconfig
arm-multi_v5_defconfig
x86_64-defconfig
arm-allmodconfig
arm-allnoconfig
x86_64-allnoconfig
arm-multi_v4t_defconfig
arm64-defconfig
close failed in file object destructor:
sys.excepthook is missing
lost sys.stderr
Tree/Branch: master
Git describe: v4.11-8539-gaf82455
Commit: af82455f7d Merge tag 'char-misc-4.12-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc
Build Time: 211 min 28 sec
Passed: 10 / 10 (100.00 %)
Failed: 0 / 10 ( 0.00 %)
Errors: 0
Warnings: 4
Section Mismatches: 0
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
4 warnings 0 mismatches : arm-multi_v7_defconfig
-------------------------------------------------------------------------------
Warnings Summary: 4
1 arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
1 arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
1 arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
1 arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
arm64-allnoconfig
arm64-allmodconfig
arm-multi_v5_defconfig
x86_64-defconfig
arm-allmodconfig
arm-allnoconfig
x86_64-allnoconfig
arm-multi_v4t_defconfig
arm64-defconfig
This patchset introduces one pointer of extcon device into usb phy
structure, and some other helper functions to register extcon instead
of each phy driver having its own related extcon APIs.
Changes since v2:
- Support separate extcon device.
- Convert the phy-msm-usb driver.
Changes since v1:
- Fix build errors with random config.
Baolin Wang (3):
usb: phy: Introduce one extcon device into usb phy
usb: phy: phy-qcom-8x16-usb: Remove redundant extcon
register/unregister
usb: phy: phy-msm-usb: Remove redundant extcon register/unregister
drivers/usb/phy/Kconfig | 6 +--
drivers/usb/phy/phy-msm-usb.c | 85 ++++++++---------------------------
drivers/usb/phy/phy-qcom-8x16-usb.c | 20 +++------
drivers/usb/phy/phy.c | 57 +++++++++++++++++++++++
include/linux/usb/phy.h | 7 +++
5 files changed, 90 insertions(+), 85 deletions(-)
--
1.7.9.5
Tree/Branch: master
Git describe: v4.11-8118-g4ac4d58
Commit: 4ac4d58488 Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Build Time: 114 min 57 sec
Passed: 10 / 10 (100.00 %)
Failed: 0 / 10 ( 0.00 %)
Errors: 0
Warnings: 4
Section Mismatches: 0
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
4 warnings 0 mismatches : arm-multi_v7_defconfig
-------------------------------------------------------------------------------
Warnings Summary: 4
1 arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
1 arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
1 arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
1 arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
arm64-allnoconfig
arm64-allmodconfig
arm-multi_v5_defconfig
x86_64-defconfig
arm-allmodconfig
arm-allnoconfig
x86_64-allnoconfig
arm-multi_v4t_defconfig
arm64-defconfig
close failed in file object destructor:
sys.excepthook is missing
lost sys.stderr
Tree/Branch: master
Git describe: v4.11-8060-g8d5e72d
Commit: 8d5e72dfdf Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
Build Time: 115 min 1 sec
Passed: 10 / 10 (100.00 %)
Failed: 0 / 10 ( 0.00 %)
Errors: 0
Warnings: 4
Section Mismatches: 0
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
4 warnings 0 mismatches : arm-multi_v7_defconfig
-------------------------------------------------------------------------------
Warnings Summary: 4
1 arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
1 arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
1 arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
1 arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
arm64-allnoconfig
arm64-allmodconfig
arm-multi_v5_defconfig
x86_64-defconfig
arm-allmodconfig
arm-allnoconfig
x86_64-allnoconfig
arm-multi_v4t_defconfig
arm64-defconfig
Tree/Branch: master
Git describe: v4.11-7650-ga1be8ed
Commit: a1be8edda4 Merge tag 'modules-for-v4.12' of git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux
Build Time: 222 min 8 sec
Passed: 10 / 10 (100.00 %)
Failed: 0 / 10 ( 0.00 %)
Errors: 0
Warnings: 4
Section Mismatches: 0
-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
4 warnings 0 mismatches : arm-multi_v7_defconfig
-------------------------------------------------------------------------------
Warnings Summary: 4
1 arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
1 arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
1 arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
1 arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
===============================================================================
Detailed per-defconfig build reports below:
-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
arch/arm/configs/multi_v7_defconfig:596:warning: symbol value 'm' invalid for ROCKCHIP_ANALOGIX_DP
arch/arm/configs/multi_v7_defconfig:597:warning: symbol value 'm' invalid for ROCKCHIP_DW_HDMI
arch/arm/configs/multi_v7_defconfig:598:warning: symbol value 'm' invalid for ROCKCHIP_DW_MIPI_DSI
arch/arm/configs/multi_v7_defconfig:599:warning: symbol value 'm' invalid for ROCKCHIP_INNO_HDMI
-------------------------------------------------------------------------------
Passed with no errors, warnings or mismatches:
arm64-allnoconfig
arm64-allmodconfig
arm-multi_v5_defconfig
x86_64-defconfig
arm-allmodconfig
arm-allnoconfig
x86_64-allnoconfig
arm-multi_v4t_defconfig
arm64-defconfig
close failed in file object destructor:
sys.excepthook is missing
lost sys.stderr