|
@@ -22,7 +22,6 @@
|
|
|
#include <linux/of.h>
|
|
|
#include <linux/of_device.h>
|
|
|
#include <linux/genhd.h>
|
|
|
-#include <linux/kallsyms.h>
|
|
|
#include <linux/mutex.h>
|
|
|
#include <linux/pm_runtime.h>
|
|
|
#include <linux/netdevice.h>
|
|
@@ -687,8 +686,8 @@ static ssize_t dev_attr_show(struct kobject *kobj, struct attribute *attr,
|
|
|
if (dev_attr->show)
|
|
|
ret = dev_attr->show(dev, dev_attr, buf);
|
|
|
if (ret >= (ssize_t)PAGE_SIZE) {
|
|
|
- print_symbol("dev_attr_show: %s returned bad count\n",
|
|
|
- (unsigned long)dev_attr->show);
|
|
|
+ printk("dev_attr_show: %pS returned bad count\n",
|
|
|
+ dev_attr->show);
|
|
|
}
|
|
|
return ret;
|
|
|
}
|