hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/arch/powerpc/platforms/powernv/opal-lpc.c
....@@ -1,12 +1,8 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * PowerNV LPC bus handling.
34 *
45 * Copyright 2013 IBM Corp.
5
- *
6
- * This program is free software; you can redistribute it and/or
7
- * modify it under the terms of the GNU General Public License
8
- * as published by the Free Software Foundation; either version
9
- * 2 of the License, or (at your option) any later version.
106 */
117
128 #include <linux/kernel.h>
....@@ -192,7 +188,7 @@
192188 u32 data, pos, len, todo;
193189 int rc;
194190
195
- if (!access_ok(VERIFY_WRITE, ubuf, count))
191
+ if (!access_ok(ubuf, count))
196192 return -EFAULT;
197193
198194 todo = count;
....@@ -283,7 +279,7 @@
283279 u32 data, pos, len, todo;
284280 int rc;
285281
286
- if (!access_ok(VERIFY_READ, ubuf, count))
282
+ if (!access_ok(ubuf, count))
287283 return -EFAULT;
288284
289285 todo = count;