1
0
mirror of https://github.com/sjlongland/adv950.git synced 2025-09-13 10:43:14 +10:00

serial_core: Convert PDE macro to PDE_DATA

As per d9dda78bad879595d8c4220a067fc029d6484a16.
This commit is contained in:
Stuart Longland 2017-03-05 14:33:10 +10:00
parent 76910af8b0
commit 782ba49045
Signed by: stuartl
GPG Key ID: 4DFA191410BDE3B7

View File

@ -1676,7 +1676,7 @@ static int uart_proc_show(struct seq_file *m, void *v)
static int uart_proc_open(struct inode *inode, struct file *file)
{
return single_open(file, uart_proc_show, PDE(inode)->data);
return single_open(file, uart_proc_show, PDE_DATA(inode));
}
static const struct file_operations uart_proc_fops = {