Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e4611984 authored by Linux Build Service Account's avatar Linux Build Service Account
Browse files

Promotion of kernel.lnx.4.4-161103.1.

CRs      Change ID                                   Subject
--------------------------------------------------------------------------------------------------------------
1064187   I86976ac6139b8c76d9239acae073f03fbc5e0a38   drivers: soc: Add new parameters for APR IPC logging
1070583   Iaac10a722a595ce7864e813aa56685689356f6a9   msm: camera: isp: Fix reset sequence on stop
10780006   I142f31c6bb46d6a394ad012077e1703875a120ad   drivers: qcom: ultrasound: Lock async driver calls
1059495   I94a6fc02436734b4f398d1a72f53b3ae68612679   ASoC: msm: qdsp6v2: Index check for out of range
1081736   I030153a6b2106a6504ed51b5cb00a27f842e2488   usb: pd: Avoid calling SVID disconnect if not previously
1080245   I5b1229091fcb7b3887b54735b9663fd31a35db21   clk: Add support to vote to regulator framework from clk
1083736   I69e37a93418b99a187c7b46cf62524c5fc4901f2   ASoC: wcd934x: Update OCP connection attempts
1070583   If0e92e26c7a44c614536ba0178dc9f70a4260fd5   msm: camera: ispif: Do not reset ispif
1085213   Ie8bb9ed903e46b0914b4ba2630efa864c751c29b   ASoC: wcd934x-dsp-cntl: Add misc device to control codec
1052832   Id6d45982cbe42a113e58c9b6509eb6ef8064aeef   ASoC: msm: qdsp6v2: Change audio drivers to use %pK
1080940   Id570e427d40d08e29cad7cb74be426bf218d00ee   usb: dwc3: Draw 100mA upon host bus reset
1059495   Ic7ed961d8beb16eee35414825ec6ba7d4e95a60d   ASoC: msmcobalt: Initialize variable to default value
1084190   I7862bb0fc83573567243ffa9549a2c7405b5986c   selinux: nlmsgtab: add SOCK_DESTROY to the netlink mappi
1072758   I0f08dd57fa39d385369ef4886d12e8ea77c6ebc0   sound: usb: Map audio format received from QMI client
1081736   I4510f91e7d23ab161517c13702462da4ec8d7a2e   usb: pd: Implement RX message queuing

Change-Id: Id3ec46d006b975d7f115d738f62236bcb2b8ac70
CRs-Fixed: 10780006, 1064187, 1085213, 1084190, 1052832, 1081736, 1059495, 1083736, 1072758, 1080940, 1080245, 1070583
parents 28f64cb2 758693b4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -194,7 +194,7 @@ struct clk *clk_register_composite(struct device *dev, const char *name,
			unsigned long flags)
{
	struct clk *clk;
	struct clk_init_data init;
	struct clk_init_data init = {};
	struct clk_composite *composite;
	struct clk_ops *clk_composite_ops;

+1 −1
Original line number Diff line number Diff line
@@ -436,7 +436,7 @@ static struct clk *_register_divider(struct device *dev, const char *name,
{
	struct clk_divider *div;
	struct clk *clk;
	struct clk_init_data init;
	struct clk_init_data init = {};

	if (clk_divider_flags & CLK_DIVIDER_HIWORD_MASK) {
		if (width + shift > 16) {
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ struct clk *clk_register_fixed_factor(struct device *dev, const char *name,
		unsigned int mult, unsigned int div)
{
	struct clk_fixed_factor *fix;
	struct clk_init_data init;
	struct clk_init_data init = {};
	struct clk *clk;

	fix = kmalloc(sizeof(*fix), GFP_KERNEL);
+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ struct clk *clk_register_fixed_rate_with_accuracy(struct device *dev,
{
	struct clk_fixed_rate *fixed;
	struct clk *clk;
	struct clk_init_data init;
	struct clk_init_data init = {};

	/* allocate fixed-rate clock */
	fixed = kzalloc(sizeof(*fixed), GFP_KERNEL);
+1 −1
Original line number Diff line number Diff line
@@ -124,7 +124,7 @@ struct clk *clk_register_fractional_divider(struct device *dev,
		u8 clk_divider_flags, spinlock_t *lock)
{
	struct clk_fractional_divider *fd;
	struct clk_init_data init;
	struct clk_init_data init = {};
	struct clk *clk;

	fd = kzalloc(sizeof(*fd), GFP_KERNEL);
Loading