|
@@ -48,13 +48,6 @@ eeprom_93xx46_bin_read(struct file *filp, struct kobject *kobj,
|
|
|
dev = container_of(kobj, struct device, kobj);
|
|
|
edev = dev_get_drvdata(dev);
|
|
|
|
|
|
- if (unlikely(off >= edev->bin.size))
|
|
|
- return 0;
|
|
|
- if ((off + count) > edev->bin.size)
|
|
|
- count = edev->bin.size - off;
|
|
|
- if (unlikely(!count))
|
|
|
- return count;
|
|
|
-
|
|
|
cmd_addr = OP_READ << edev->addrlen;
|
|
|
|
|
|
if (edev->addrlen == 7) {
|
|
@@ -200,13 +193,6 @@ eeprom_93xx46_bin_write(struct file *filp, struct kobject *kobj,
|
|
|
dev = container_of(kobj, struct device, kobj);
|
|
|
edev = dev_get_drvdata(dev);
|
|
|
|
|
|
- if (unlikely(off >= edev->bin.size))
|
|
|
- return -EFBIG;
|
|
|
- if ((off + count) > edev->bin.size)
|
|
|
- count = edev->bin.size - off;
|
|
|
- if (unlikely(!count))
|
|
|
- return count;
|
|
|
-
|
|
|
/* only write even number of bytes on 16-bit devices */
|
|
|
if (edev->addrlen == 6) {
|
|
|
step = 2;
|