staging: unisys: fix CamelCase name in virthba_probe()
Fix CamelCase local variable name: pChannelHeader => channel_header Update references to use the new name. Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
347d05604f
commit
1789377089
1 changed files with 4 additions and 4 deletions
|
@ -463,7 +463,7 @@ virthba_probe(struct virtpci_dev *virtpcidev, const struct pci_device_id *id)
|
|||
int rsp;
|
||||
int i;
|
||||
irq_handler_t handler = virthba_isr;
|
||||
struct channel_header __iomem *pChannelHeader;
|
||||
struct channel_header __iomem *channel_header;
|
||||
struct signal_queue_header __iomem *pqhdr;
|
||||
u64 mask;
|
||||
|
||||
|
@ -587,10 +587,10 @@ virthba_probe(struct virtpci_dev *virtpcidev, const struct pci_device_id *id)
|
|||
DBGINF("starting rsp thread -- queueinfo: 0x%p, threadinfo: 0x%p.\n",
|
||||
virthbainfo->chinfo.queueinfo, &virthbainfo->chinfo.threadinfo);
|
||||
|
||||
pChannelHeader = virthbainfo->chinfo.queueinfo->chan;
|
||||
channel_header = virthbainfo->chinfo.queueinfo->chan;
|
||||
pqhdr = (struct signal_queue_header __iomem *)
|
||||
((char __iomem *)pChannelHeader +
|
||||
readq(&pChannelHeader->ch_space_offset)) + IOCHAN_FROM_IOPART;
|
||||
((char __iomem *)channel_header +
|
||||
readq(&channel_header->ch_space_offset)) + IOCHAN_FROM_IOPART;
|
||||
virthbainfo->flags_addr = &pqhdr->features;
|
||||
|
||||
if (!uisthread_start(&virthbainfo->chinfo.threadinfo,
|
||||
|
|
Loading…
Reference in a new issue