|
@@ -721,9 +721,7 @@ static ssize_t c2port_read_flash_data(struct file *filp, struct kobject *kobj,
|
|
struct bin_attribute *attr,
|
|
struct bin_attribute *attr,
|
|
char *buffer, loff_t offset, size_t count)
|
|
char *buffer, loff_t offset, size_t count)
|
|
{
|
|
{
|
|
- struct c2port_device *c2dev =
|
|
|
|
- dev_get_drvdata(container_of(kobj,
|
|
|
|
- struct device, kobj));
|
|
|
|
|
|
+ struct c2port_device *c2dev = dev_get_drvdata(kobj_to_dev(kobj));
|
|
ssize_t ret;
|
|
ssize_t ret;
|
|
|
|
|
|
/* Check the device and flash access status */
|
|
/* Check the device and flash access status */
|
|
@@ -838,9 +836,7 @@ static ssize_t c2port_write_flash_data(struct file *filp, struct kobject *kobj,
|
|
struct bin_attribute *attr,
|
|
struct bin_attribute *attr,
|
|
char *buffer, loff_t offset, size_t count)
|
|
char *buffer, loff_t offset, size_t count)
|
|
{
|
|
{
|
|
- struct c2port_device *c2dev =
|
|
|
|
- dev_get_drvdata(container_of(kobj,
|
|
|
|
- struct device, kobj));
|
|
|
|
|
|
+ struct c2port_device *c2dev = dev_get_drvdata(kobj_to_dev(kobj));
|
|
int ret;
|
|
int ret;
|
|
|
|
|
|
/* Check the device access status */
|
|
/* Check the device access status */
|