driver core: remove DEVICE_NAME_SIZE define
There is no such thing as a "device name size" in the driver core, so remove the define and fix up any users of this odd define in the rest of the kernel. Signed-off-by: Kay Sievers <kay.sievers@vrfy.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:

committed by
Greg Kroah-Hartman

父節點
aab0de2451
當前提交
ca52a49846
@@ -22,7 +22,7 @@
|
||||
|
||||
struct eisa_device_info {
|
||||
struct eisa_device_id id;
|
||||
char name[DEVICE_NAME_SIZE];
|
||||
char name[50];
|
||||
};
|
||||
|
||||
#ifdef CONFIG_EISA_NAMES
|
||||
@@ -63,7 +63,7 @@ static void __init eisa_name_device (struct eisa_device *edev)
|
||||
if (!strcmp (edev->id.sig, eisa_table[i].id.sig)) {
|
||||
strlcpy (edev->pretty_name,
|
||||
eisa_table[i].name,
|
||||
DEVICE_NAME_SIZE);
|
||||
sizeof(edev->pretty_name));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user