2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-11-19 16:14:13 +08:00

sbus bpp: instances missed in s/dev_name/bpp_dev_name/

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Al Viro 2008-05-21 06:32:11 +01:00 committed by Linus Torvalds
parent 79bc12a0a0
commit 572abae844

View File

@ -869,7 +869,7 @@ static void probeLptPort(unsigned idx)
instances[idx].mode = COMPATIBILITY; instances[idx].mode = COMPATIBILITY;
instances[idx].run_length = 0; instances[idx].run_length = 0;
instances[idx].run_flag = 0; instances[idx].run_flag = 0;
if (!request_region(lpAddr,3, dev_name)) return; if (!request_region(lpAddr,3, bpp_dev_name)) return;
/* /*
* First, make sure the instance exists. Do this by writing to * First, make sure the instance exists. Do this by writing to
@ -1021,7 +1021,7 @@ static int __init bpp_init(void)
if (rc == 0) if (rc == 0)
return -ENODEV; return -ENODEV;
rc = register_chrdev(BPP_MAJOR, dev_name, &bpp_fops); rc = register_chrdev(BPP_MAJOR, bpp_dev_name, &bpp_fops);
if (rc < 0) if (rc < 0)
return rc; return rc;
@ -1037,7 +1037,7 @@ static void __exit bpp_cleanup(void)
{ {
unsigned idx; unsigned idx;
unregister_chrdev(BPP_MAJOR, dev_name); unregister_chrdev(BPP_MAJOR, bpp_dev_name);
for (idx = 0; idx < BPP_NO; idx++) { for (idx = 0; idx < BPP_NO; idx++) {
if (instances[idx].present) if (instances[idx].present)