diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/iomap.c | 2 | ||||
-rw-r--r-- | lib/kobject_uevent.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/iomap.c b/lib/iomap.c index db004a9ff509..dd6ca48fe6b0 100644 --- a/lib/iomap.c +++ b/lib/iomap.c | |||
@@ -256,7 +256,7 @@ EXPORT_SYMBOL(ioport_unmap); | |||
256 | * */ | 256 | * */ |
257 | void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long maxlen) | 257 | void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long maxlen) |
258 | { | 258 | { |
259 | unsigned long start = pci_resource_start(dev, bar); | 259 | resource_size_t start = pci_resource_start(dev, bar); |
260 | unsigned long len = pci_resource_len(dev, bar); | 260 | unsigned long len = pci_resource_len(dev, bar); |
261 | unsigned long flags = pci_resource_flags(dev, bar); | 261 | unsigned long flags = pci_resource_flags(dev, bar); |
262 | 262 | ||
diff --git a/lib/kobject_uevent.c b/lib/kobject_uevent.c index b06185ed1895..9fb6b86cf6b1 100644 --- a/lib/kobject_uevent.c +++ b/lib/kobject_uevent.c | |||
@@ -57,7 +57,7 @@ int kobject_action_type(const char *buf, size_t count, | |||
57 | enum kobject_action action; | 57 | enum kobject_action action; |
58 | int ret = -EINVAL; | 58 | int ret = -EINVAL; |
59 | 59 | ||
60 | if (count && buf[count-1] == '\n') | 60 | if (count && (buf[count-1] == '\n' || buf[count-1] == '\0')) |
61 | count--; | 61 | count--; |
62 | 62 | ||
63 | if (!count) | 63 | if (!count) |