ALLIANCE LOAN OFFER/PROJECT FUNDING

2018-12-30 Thread FUND ALLIANCE INTERNATIONAL
Good Day, I'm Olivia Austin a consultant from Fund Alliance International, We are currently offering 95% Non-Recourse Loan with our BG Leased Monetization Program for trade finance, constructions, credit enhancement, government funding, property investment and all-round range of funding, with

[PATCH] Revert "staging:r8188eu: use lib80211 CCMP decrypt"

2018-12-30 Thread Michael Straube
Commit 6bd082af7e36 ("staging:r8188eu: use lib80211 CCMP decrypt") is causing hardfreeze whenever the driver tries to connect to my wifi network. That makes the driver unusable on my system. Reverting the commit fixes the issue and the driver works properly. Dec 29 19:21:17 gentoo kernel: BUG: sch

[PATCH 5/8] staging: rtl8192e: reduce indentation

2018-12-30 Thread Julia Lawall
Delete tab aligning a statement with the right hand side of a preceding assignment rather than the left hand side. Found with the help of Coccinelle. Signed-off-by: Julia Lawall --- drivers/staging/rtl8192e/rtl8192e/rtl_wx.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff

[PATCH 0/8] reduce indentation

2018-12-30 Thread Julia Lawall
These patches fix cases where a subsequent statement is aligned with the right hand side of an assignment rather than the left hand side. This was done using the following semantic match (http://coccinelle.lip6.fr/). It has a lot of false positives, because Coccinelle doesn't record the differenc

[PATCH v2] staging: mt7621-pinctrl: initialize 'num_maps' variable to zero

2018-12-30 Thread Sergio Paracuellos
Function 'rt2880_pinctrl_dt_node_to_map' calls internally 'pinctrl_utils_reserve_map' which expects 'num_maps' to be initialized. It does a memory allocation based on the value, and triggers the following warning if is not properly set: if (unlikely(order >= MAX_ORDER)) { WARN_ON_ONCE(!(gf

Re: [PATCH 15/18] staging: mt7621-pinctrl: refactor rt2880_pinctrl_dt_node_to_map function

2018-12-30 Thread NeilBrown
On Sun, Dec 30 2018, Sergio Paracuellos wrote: > Hi again and sorry for the noise. A bit of noise is no problem, especially when it leads to the right answer. > > + *num_maps = 0; Yes, this works. I had tried other numbers like ngroups, and got strange errors. With this, it all works. >

[PATCH] staging: mt7621-pinctrl: initialize 'num_maps' variable to zero

2018-12-30 Thread Sergio Paracuellos
Function 'rt2880_pinctrl_dt_node_to_map' calls internally 'pinctrl_utils_reserve_map' which expects 'num_maps' to be initialized. It does a memory allocation based on the value, and triggers the following warning if is not properly set: if (unlikely(order >= MAX_ORDER)) { WARN_ON_ONCE(!(gf

Re: [PATCH 15/18] staging: mt7621-pinctrl: refactor rt2880_pinctrl_dt_node_to_map function

2018-12-30 Thread Sergio Paracuellos
Hi again and sorry for the noise. On Sun, Dec 30, 2018 at 8:37 AM Sergio Paracuellos wrote: > > Hi again, > > Sorry, Too early in the morning and I misunderstood the problem :-) > > On Sun, Dec 30, 2018 at 8:24 AM Sergio Paracuellos > wrote: > > > > Hi Neil, > > > > On Sun, Dec 30, 2018 at 4:58