Skip to content

Commit 35dbfcb

Browse files
committed
Merge branch 'pci/hotplug'
- Clean up whitespace in messages (Colin Ian King) * pci/hotplug: PCI: hotplug: Clean up spaces in messages
2 parents 31e04a4 + 1d33d9e commit 35dbfcb

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

drivers/pci/hotplug/cpqphp_pci.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1302,7 +1302,7 @@ int cpqhp_find_available_resources(struct controller *ctrl, void __iomem *rom_st
13021302

13031303
dbg("found io_node(base, length) = %x, %x\n",
13041304
io_node->base, io_node->length);
1305-
dbg("populated slot =%d \n", populated_slot);
1305+
dbg("populated slot = %d\n", populated_slot);
13061306
if (!populated_slot) {
13071307
io_node->next = ctrl->io_head;
13081308
ctrl->io_head = io_node;
@@ -1325,7 +1325,7 @@ int cpqhp_find_available_resources(struct controller *ctrl, void __iomem *rom_st
13251325

13261326
dbg("found mem_node(base, length) = %x, %x\n",
13271327
mem_node->base, mem_node->length);
1328-
dbg("populated slot =%d \n", populated_slot);
1328+
dbg("populated slot = %d\n", populated_slot);
13291329
if (!populated_slot) {
13301330
mem_node->next = ctrl->mem_head;
13311331
ctrl->mem_head = mem_node;
@@ -1349,7 +1349,7 @@ int cpqhp_find_available_resources(struct controller *ctrl, void __iomem *rom_st
13491349
p_mem_node->length = pre_mem_length << 16;
13501350
dbg("found p_mem_node(base, length) = %x, %x\n",
13511351
p_mem_node->base, p_mem_node->length);
1352-
dbg("populated slot =%d \n", populated_slot);
1352+
dbg("populated slot = %d\n", populated_slot);
13531353

13541354
if (!populated_slot) {
13551355
p_mem_node->next = ctrl->p_mem_head;
@@ -1373,7 +1373,7 @@ int cpqhp_find_available_resources(struct controller *ctrl, void __iomem *rom_st
13731373
bus_node->length = max_bus - secondary_bus + 1;
13741374
dbg("found bus_node(base, length) = %x, %x\n",
13751375
bus_node->base, bus_node->length);
1376-
dbg("populated slot =%d \n", populated_slot);
1376+
dbg("populated slot = %d\n", populated_slot);
13771377
if (!populated_slot) {
13781378
bus_node->next = ctrl->bus_head;
13791379
ctrl->bus_head = bus_node;

drivers/pci/hotplug/ibmphp_hpc.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ static u8 i2c_ctrl_read(struct controller *ctlr_ptr, void __iomem *WPGBbar, u8 i
124124
unsigned long ultemp;
125125
unsigned long data; // actual data HILO format
126126

127-
debug_polling("%s - Entry WPGBbar[%p] index[%x] \n", __func__, WPGBbar, index);
127+
debug_polling("%s - Entry WPGBbar[%p] index[%x]\n", __func__, WPGBbar, index);
128128

129129
//--------------------------------------------------------------------
130130
// READ - step 1
@@ -147,7 +147,7 @@ static u8 i2c_ctrl_read(struct controller *ctlr_ptr, void __iomem *WPGBbar, u8 i
147147
ultemp = ultemp << 8;
148148
data |= ultemp;
149149
} else {
150-
err("this controller type is not supported \n");
150+
err("this controller type is not supported\n");
151151
return HPC_ERROR;
152152
}
153153

@@ -258,7 +258,7 @@ static u8 i2c_ctrl_write(struct controller *ctlr_ptr, void __iomem *WPGBbar, u8
258258
ultemp = ultemp << 8;
259259
data |= ultemp;
260260
} else {
261-
err("this controller type is not supported \n");
261+
err("this controller type is not supported\n");
262262
return HPC_ERROR;
263263
}
264264

0 commit comments

Comments
 (0)