You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[SCSI] replace __FUNCTION__ with __func__
[jejb: fixed up a ton of missed conversions. All of you are on notice this has happened, driver trees will now need to be rebased] Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Cc: SCSI List <linux-scsi@vger.kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
This commit is contained in:
committed by
James Bottomley
parent
2b14290078
commit
cadbd4a5e3
@@ -55,7 +55,7 @@ scsi_nl_rcv_msg(struct sk_buff *skb)
|
||||
if ((nlh->nlmsg_len < (sizeof(*nlh) + sizeof(*hdr))) ||
|
||||
(skb->len < nlh->nlmsg_len)) {
|
||||
printk(KERN_WARNING "%s: discarding partial skb\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -82,7 +82,7 @@ scsi_nl_rcv_msg(struct sk_buff *skb)
|
||||
|
||||
if (nlh->nlmsg_len < (sizeof(*nlh) + hdr->msglen)) {
|
||||
printk(KERN_WARNING "%s: discarding partial message\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -139,7 +139,7 @@ scsi_netlink_init(void)
|
||||
error = netlink_register_notifier(&scsi_netlink_notifier);
|
||||
if (error) {
|
||||
printk(KERN_ERR "%s: register of event handler failed - %d\n",
|
||||
__FUNCTION__, error);
|
||||
__func__, error);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -148,7 +148,7 @@ scsi_netlink_init(void)
|
||||
THIS_MODULE);
|
||||
if (!scsi_nl_sock) {
|
||||
printk(KERN_ERR "%s: register of recieve handler failed\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
netlink_unregister_notifier(&scsi_netlink_notifier);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user