Skip to content

Commit db9c6d1

Browse files
committed
Merge tag 'staging-6.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging
Pull staging driver updates from Greg KH: "Here is a set of staging driver updates for 6.5-rc1. It's a small update this merge window, nothing major at all, overall just under 1000 lines of code removed, not a huge churn. Nothing major to highlight here either, just lots of small coding style fixes. All of these have been in linux-next for a while with no reported problems" * tag 'staging-6.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging: (62 commits) staging: rtl8192e: Remove whitespace and blank lines staging: rtl8192e: remove 5G related code staging: rtl8192e: remove comparison to true staging: rtl8192e: remove return statement from void function staging: rtl8192e: convert else if sequence to switch staging: rtl8192e: clean up brace coding style issues staging: rtl8723bs: Fix blank line issues staging: rtl8723bs: Fix block comment issue staging: rtl8723bs: Fix indentation issues staging: vchiq_arm: Remove extra struct vchiq_instance declaration staging: rtl8192e: Rename variable InitialGainHandler staging: rtl8192e: Rename variable LeisurePSLeave staging: rtl8192e: Rename variable SetBWModeHandler staging: rtl8192e: Rename variable SetWirelessMode staging: rtl8192e: Rename RTLLIB_LINKED_SCANNING staging: rtl8192e: Rename RTLLIB_LINKED to MAC80211_LINKED staging: rtl8192e: Rename RTLLIB_NOLINK to MAC80211_NOLINK staging: rtl8192e: Rename state to link_state staging: rtl8192e: Rename rtllib_state to rtl_link_state staging: rtl8192e: Remove unused enum led_ctl_mode ...
2 parents fc75f21 + 4a22870 commit db9c6d1

58 files changed

Lines changed: 446 additions & 1428 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

drivers/staging/axis-fifo/axis-fifo.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -906,9 +906,6 @@ static int axis_fifo_probe(struct platform_device *pdev)
906906
if (rc < 0)
907907
goto err_initial;
908908

909-
dev_info(fifo->dt_device, "axis-fifo created at %pa mapped to 0x%pa, irq=%i\n",
910-
&r_mem->start, &fifo->base_addr, fifo->irq);
911-
912909
return 0;
913910

914911
err_initial:

drivers/staging/most/i2c/i2c.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ static struct i2c_driver i2c_driver = {
362362
.driver = {
363363
.name = "hdm_i2c",
364364
},
365-
.probe_new = i2c_probe,
365+
.probe = i2c_probe,
366366
.remove = i2c_remove,
367367
.id_table = i2c_id,
368368
};

drivers/staging/olpc_dcon/olpc_dcon.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ static struct i2c_driver dcon_driver = {
779779
},
780780
.class = I2C_CLASS_DDC | I2C_CLASS_HWMON,
781781
.id_table = dcon_idtable,
782-
.probe_new = dcon_probe,
782+
.probe = dcon_probe,
783783
.remove = dcon_remove,
784784
.detect = dcon_detect,
785785
.address_list = normal_i2c,

drivers/staging/pi433/pi433_if.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1019,7 +1019,6 @@ static int setup_gpio(struct pi433_device *device)
10191019
}
10201020

10211021
/* configure the pin */
1022-
gpiod_unexport(device->gpiod[i]);
10231022
retval = gpiod_direction_input(device->gpiod[i]);
10241023
if (retval)
10251024
return retval;

drivers/staging/rtl8192e/rtl8192e/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ config RTL8192E
33
tristate "RealTek RTL8192E Wireless LAN NIC driver"
44
depends on PCI && WLAN && RTLLIB
55
depends on m
6+
select CFG80211
67
select WIRELESS_EXT
78
select WEXT_PRIV
89
select CRYPTO

drivers/staging/rtl8192e/rtl8192e/r8190P_def.h

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ enum rtl819x_loopback {
8585
#define HAL_PRIME_CHNL_OFFSET_LOWER 1
8686
#define HAL_PRIME_CHNL_OFFSET_UPPER 2
8787

88-
8988
enum version_8190_loopback {
9089
VERSION_8190_BD = 0x3,
9190
VERSION_8190_BE
@@ -139,8 +138,6 @@ struct tx_fwinfo_8190pci {
139138
u32 Retry_Limit:4;
140139
u32 Reserved2:1;
141140
u32 PacketID:13;
142-
143-
144141
};
145142

146143
struct phy_ofdm_rx_status_rxsc_sgien_exintfflag {
@@ -172,7 +169,6 @@ struct phy_sts_cck_819xpci {
172169
u8 cck_agc_rpt;
173170
};
174171

175-
176172
#define PHY_RSSI_SLID_WIN_MAX 100
177173
#define PHY_Beacon_RSSI_SLID_WIN_MAX 10
178174

@@ -214,7 +210,6 @@ struct tx_desc {
214210
u32 Reserved7;
215211
};
216212

217-
218213
struct tx_desc_cmd {
219214
u16 PktSize;
220215
u8 Reserved1;
@@ -256,10 +251,8 @@ struct rx_desc {
256251
u32 Reserved3;
257252

258253
u32 BufferAddress;
259-
260254
};
261255

262-
263256
struct rx_fwinfo {
264257
u16 Reserved1:12;
265258
u16 PartAggr:1;
@@ -278,7 +271,6 @@ struct rx_fwinfo {
278271
u8 Reserved4:1;
279272

280273
u32 TSFL;
281-
282274
};
283275

284276
#endif

drivers/staging/rtl8192e/rtl8192e/r8190P_rtl8256.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ bool rtl92e_config_rf(struct net_device *dev)
7373
break;
7474
case RF90_PATH_B:
7575
u4RegValue = rtl92e_get_bb_reg(dev, pPhyReg->rfintfs,
76-
bRFSI_RFENV<<16);
76+
bRFSI_RFENV << 16);
7777
break;
7878
}
7979

80-
rtl92e_set_bb_reg(dev, pPhyReg->rfintfe, bRFSI_RFENV<<16, 0x1);
80+
rtl92e_set_bb_reg(dev, pPhyReg->rfintfe, bRFSI_RFENV << 16, 0x1);
8181

8282
rtl92e_set_bb_reg(dev, pPhyReg->rfintfo, bRFSI_RFENV, 0x1);
8383

@@ -117,7 +117,7 @@ bool rtl92e_config_rf(struct net_device *dev)
117117
break;
118118
case RF90_PATH_B:
119119
rtl92e_set_bb_reg(dev, pPhyReg->rfintfs,
120-
bRFSI_RFENV<<16, u4RegValue);
120+
bRFSI_RFENV << 16, u4RegValue);
121121
break;
122122
}
123123

0 commit comments

Comments
 (0)