All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tools: fix typo
@ 2009-05-19  9:28 Christoph Egger
  0 siblings, 0 replies; 2+ messages in thread
From: Christoph Egger @ 2009-05-19  9:28 UTC (permalink / raw)
  To: xen-devel

[-- Attachment #1: Type: text/plain, Size: 427 bytes --]


Hi,

attached patch fixes an obvious typo.
Please also apply this to xen-3.4-testing.

Signed-off-by: Christoph Egger <Christoph.Egger@amd.com>


-- 
---to satisfy European Law for business letters:
Advanced Micro Devices GmbH
Karl-Hammerschmidt-Str. 34, 85609 Dornach b. Muenchen
Geschaeftsfuehrer: Thomas M. McCoy, Giuliano Meroni
Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632

[-- Attachment #2: xen_xgettext.diff --]
[-- Type: text/x-diff, Size: 510 bytes --]

diff -r 780041c4a96d tools/python/Makefile
--- a/tools/python/Makefile	Tue May 19 02:23:32 2009 +0100
+++ b/tools/python/Makefile	Tue May 19 11:26:33 2009 +0200
@@ -34,7 +34,7 @@ build: buildpy refresh-pot refresh-po $(
 # string, hence the sed black magic. This avoids the expensive
 # re-generation of .po files on every single build
 refresh-pot: $(I18NSRCFILES)
-	xgettext --default-domain=$(POPACAKGE) \
+	xgettext --default-domain=$(POPACKAGE) \
 		--keyword=N_ \
 		--keyword=_ \
 		-o $(POTFILE)-tmp \

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH] tools: Fix typo
@ 2024-05-12  5:42 Wei-Hsin Yeh
  0 siblings, 0 replies; 2+ messages in thread
From: Wei-Hsin Yeh @ 2024-05-12  5:42 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel, Wei-Hsin Yeh

Drop one '-' to adhere to coding style.
Replace 'arbitray' with 'arbitrary'.

Signed-off-by: Wei-Hsin Yeh <weihsinyeh168@gmail.com>
---
 include/linux/jhash.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/linux/jhash.h b/include/linux/jhash.h
index ab7f8c152..fa26a2dd3 100644
--- a/include/linux/jhash.h
+++ b/include/linux/jhash.h
@@ -31,7 +31,7 @@
 /* Mask the hash value, i.e (value & jhash_mask(n)) instead of (value % n) */
 #define jhash_mask(n)   (jhash_size(n)-1)
 
-/* __jhash_mix -- mix 3 32-bit values reversibly. */
+/* __jhash_mix - mix 3 32-bit values reversibly. */
 #define __jhash_mix(a, b, c)			\
 {						\
 	a -= c;  a ^= rol32(c, 4);  c += b;	\
@@ -60,7 +60,7 @@
 /* jhash - hash an arbitrary key
  * @k: sequence of bytes as key
  * @length: the length of the key
- * @initval: the previous hash, or an arbitray value
+ * @initval: the previous hash, or an arbitrary value
  *
  * The generic version, hashes an arbitrary sequence of bytes.
  * No alignment or length assumptions are made about the input key.
@@ -110,7 +110,7 @@ static inline u32 jhash(const void *key, u32 length, u32 initval)
 /* jhash2 - hash an array of u32's
  * @k: the key which must be an array of u32's
  * @length: the number of u32's in the key
- * @initval: the previous hash, or an arbitray value
+ * @initval: the previous hash, or an arbitrary value
  *
  * Returns the hash value of the key.
  */
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-05-12  5:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-19  9:28 [PATCH] tools: fix typo Christoph Egger
  -- strict thread matches above, loose matches on Subject: below --
2024-05-12  5:42 [PATCH] tools: Fix typo Wei-Hsin Yeh

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.