diff options
author | Masanari Iida <standby24x7@gmail.com> | 2016-09-17 10:44:17 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2016-12-14 04:54:27 -0500 |
commit | 9165dabb2500b3dcb98fc648d27589a5a806227e (patch) | |
tree | ff2861cac7a7f9407f4065a3503be8f1242beb3a | |
parent | 95f21c5c6d8345f8253057b24a98adfbceb2aca1 (diff) |
treewide: Fix printk() message errors
This patch fix spelling typos in printk and kconfig.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | arch/arm64/kernel/hibernate.c | 4 | ||||
-rw-r--r-- | arch/mips/kernel/asm-offsets.c | 2 | ||||
-rw-r--r-- | arch/sh/kernel/cpu/Makefile | 2 | ||||
-rw-r--r-- | arch/sh/kernel/cpu/irq/Makefile | 2 | ||||
-rw-r--r-- | drivers/acpi/Kconfig | 2 | ||||
-rw-r--r-- | drivers/isdn/hisax/q931.c | 2 | ||||
-rw-r--r-- | drivers/media/usb/dvb-usb-v2/af9015.c | 2 | ||||
-rw-r--r-- | drivers/mfd/max77620.c | 2 | ||||
-rw-r--r-- | drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.c | 2 | ||||
-rw-r--r-- | drivers/net/ethernet/qlogic/qed/qed_int.c | 4 | ||||
-rw-r--r-- | drivers/net/ethernet/qlogic/qed/qed_sp_commands.c | 2 | ||||
-rw-r--r-- | drivers/net/wireless/ath/ath10k/pci.c | 2 | ||||
-rw-r--r-- | drivers/net/wireless/ath/wil6210/txrx.c | 2 | ||||
-rw-r--r-- | drivers/net/wireless/realtek/rtlwifi/rtl8723ae/fw.c | 2 | ||||
-rw-r--r-- | drivers/scsi/aic7xxx/aicasm/aicasm.c | 2 | ||||
-rw-r--r-- | drivers/usb/dwc3/gadget.c | 2 | ||||
-rw-r--r-- | scripts/gcc-plugins/latent_entropy_plugin.c | 2 | ||||
-rw-r--r-- | scripts/gcc-plugins/sancov_plugin.c | 2 | ||||
-rw-r--r-- | tools/power/acpi/tools/ec/ec_access.c | 2 |
19 files changed, 21 insertions, 21 deletions
diff --git a/arch/arm64/kernel/hibernate.c b/arch/arm64/kernel/hibernate.c index d55a7b09959b..fe301cbcb442 100644 --- a/arch/arm64/kernel/hibernate.c +++ b/arch/arm64/kernel/hibernate.c | |||
@@ -136,7 +136,7 @@ int arch_hibernation_header_save(void *addr, unsigned int max_size) | |||
136 | 136 | ||
137 | /* Save the mpidr of the cpu we called cpu_suspend() on... */ | 137 | /* Save the mpidr of the cpu we called cpu_suspend() on... */ |
138 | if (sleep_cpu < 0) { | 138 | if (sleep_cpu < 0) { |
139 | pr_err("Failing to hibernate on an unkown CPU.\n"); | 139 | pr_err("Failing to hibernate on an unknown CPU.\n"); |
140 | return -ENODEV; | 140 | return -ENODEV; |
141 | } | 141 | } |
142 | hdr->sleep_cpu_mpidr = cpu_logical_map(sleep_cpu); | 142 | hdr->sleep_cpu_mpidr = cpu_logical_map(sleep_cpu); |
@@ -547,7 +547,7 @@ out: | |||
547 | int hibernate_resume_nonboot_cpu_disable(void) | 547 | int hibernate_resume_nonboot_cpu_disable(void) |
548 | { | 548 | { |
549 | if (sleep_cpu < 0) { | 549 | if (sleep_cpu < 0) { |
550 | pr_err("Failing to resume from hibernate on an unkown CPU.\n"); | 550 | pr_err("Failing to resume from hibernate on an unknown CPU.\n"); |
551 | return -ENODEV; | 551 | return -ENODEV; |
552 | } | 552 | } |
553 | 553 | ||
diff --git a/arch/mips/kernel/asm-offsets.c b/arch/mips/kernel/asm-offsets.c index fae2f9447792..6080582a26d1 100644 --- a/arch/mips/kernel/asm-offsets.c +++ b/arch/mips/kernel/asm-offsets.c | |||
@@ -341,7 +341,7 @@ void output_pm_defines(void) | |||
341 | 341 | ||
342 | void output_kvm_defines(void) | 342 | void output_kvm_defines(void) |
343 | { | 343 | { |
344 | COMMENT(" KVM/MIPS Specfic offsets. "); | 344 | COMMENT(" KVM/MIPS Specific offsets. "); |
345 | 345 | ||
346 | OFFSET(VCPU_FPR0, kvm_vcpu_arch, fpu.fpr[0]); | 346 | OFFSET(VCPU_FPR0, kvm_vcpu_arch, fpu.fpr[0]); |
347 | OFFSET(VCPU_FPR1, kvm_vcpu_arch, fpu.fpr[1]); | 347 | OFFSET(VCPU_FPR1, kvm_vcpu_arch, fpu.fpr[1]); |
diff --git a/arch/sh/kernel/cpu/Makefile b/arch/sh/kernel/cpu/Makefile index accc7ca722e1..252e9fee687f 100644 --- a/arch/sh/kernel/cpu/Makefile +++ b/arch/sh/kernel/cpu/Makefile | |||
@@ -1,5 +1,5 @@ | |||
1 | # | 1 | # |
2 | # Makefile for the Linux/SuperH CPU-specifc backends. | 2 | # Makefile for the Linux/SuperH CPU-specific backends. |
3 | # | 3 | # |
4 | 4 | ||
5 | obj-$(CONFIG_CPU_SH2) = sh2/ | 5 | obj-$(CONFIG_CPU_SH2) = sh2/ |
diff --git a/arch/sh/kernel/cpu/irq/Makefile b/arch/sh/kernel/cpu/irq/Makefile index f0c7025a67d1..3f8e79402d7d 100644 --- a/arch/sh/kernel/cpu/irq/Makefile +++ b/arch/sh/kernel/cpu/irq/Makefile | |||
@@ -1,5 +1,5 @@ | |||
1 | # | 1 | # |
2 | # Makefile for the Linux/SuperH CPU-specifc IRQ handlers. | 2 | # Makefile for the Linux/SuperH CPU-specific IRQ handlers. |
3 | # | 3 | # |
4 | obj-$(CONFIG_SUPERH32) += imask.o | 4 | obj-$(CONFIG_SUPERH32) += imask.o |
5 | obj-$(CONFIG_CPU_SH5) += intc-sh5.o | 5 | obj-$(CONFIG_CPU_SH5) += intc-sh5.o |
diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig index 535e7828445a..a3c62f57672a 100644 --- a/drivers/acpi/Kconfig +++ b/drivers/acpi/Kconfig | |||
@@ -104,7 +104,7 @@ config ACPI_PROCFS_POWER | |||
104 | Say N to delete power /proc/acpi/ directories that have moved to /sys/ | 104 | Say N to delete power /proc/acpi/ directories that have moved to /sys/ |
105 | 105 | ||
106 | config ACPI_REV_OVERRIDE_POSSIBLE | 106 | config ACPI_REV_OVERRIDE_POSSIBLE |
107 | bool "Allow supported ACPI revision to be overriden" | 107 | bool "Allow supported ACPI revision to be overridden" |
108 | depends on X86 | 108 | depends on X86 |
109 | default y | 109 | default y |
110 | help | 110 | help |
diff --git a/drivers/isdn/hisax/q931.c b/drivers/isdn/hisax/q931.c index ba4beb25d872..298c8dba0321 100644 --- a/drivers/isdn/hisax/q931.c +++ b/drivers/isdn/hisax/q931.c | |||
@@ -855,7 +855,7 @@ struct DTag { /* Display tags */ | |||
855 | { 0x8c, "Reason" }, | 855 | { 0x8c, "Reason" }, |
856 | { 0x8d, "Calling party name" }, | 856 | { 0x8d, "Calling party name" }, |
857 | { 0x8e, "Called party name" }, | 857 | { 0x8e, "Called party name" }, |
858 | { 0x8f, "Orignal called name" }, | 858 | { 0x8f, "Original called name" }, |
859 | { 0x90, "Redirecting name" }, | 859 | { 0x90, "Redirecting name" }, |
860 | { 0x91, "Connected name" }, | 860 | { 0x91, "Connected name" }, |
861 | { 0x92, "Originating restrictions" }, | 861 | { 0x92, "Originating restrictions" }, |
diff --git a/drivers/media/usb/dvb-usb-v2/af9015.c b/drivers/media/usb/dvb-usb-v2/af9015.c index 941ceff9b268..29011dfabb11 100644 --- a/drivers/media/usb/dvb-usb-v2/af9015.c +++ b/drivers/media/usb/dvb-usb-v2/af9015.c | |||
@@ -1455,7 +1455,7 @@ static const struct usb_device_id af9015_id_table[] = { | |||
1455 | { DVB_USB_DEVICE(USB_VID_KWORLD_2, USB_PID_CONCEPTRONIC_CTVDIGRCU, | 1455 | { DVB_USB_DEVICE(USB_VID_KWORLD_2, USB_PID_CONCEPTRONIC_CTVDIGRCU, |
1456 | &af9015_props, "Conceptronic USB2.0 DVB-T CTVDIGRCU V3.0", NULL) }, | 1456 | &af9015_props, "Conceptronic USB2.0 DVB-T CTVDIGRCU V3.0", NULL) }, |
1457 | { DVB_USB_DEVICE(USB_VID_KWORLD_2, USB_PID_KWORLD_MC810, | 1457 | { DVB_USB_DEVICE(USB_VID_KWORLD_2, USB_PID_KWORLD_MC810, |
1458 | &af9015_props, "KWorld Digial MC-810", NULL) }, | 1458 | &af9015_props, "KWorld Digital MC-810", NULL) }, |
1459 | { DVB_USB_DEVICE(USB_VID_KYE, USB_PID_GENIUS_TVGO_DVB_T03, | 1459 | { DVB_USB_DEVICE(USB_VID_KYE, USB_PID_GENIUS_TVGO_DVB_T03, |
1460 | &af9015_props, "Genius TVGo DVB-T03", NULL) }, | 1460 | &af9015_props, "Genius TVGo DVB-T03", NULL) }, |
1461 | { DVB_USB_DEVICE(USB_VID_KWORLD_2, USB_PID_KWORLD_399U_2, | 1461 | { DVB_USB_DEVICE(USB_VID_KWORLD_2, USB_PID_KWORLD_399U_2, |
diff --git a/drivers/mfd/max77620.c b/drivers/mfd/max77620.c index 258757e216c4..b1700b5fa640 100644 --- a/drivers/mfd/max77620.c +++ b/drivers/mfd/max77620.c | |||
@@ -461,7 +461,7 @@ static int max77620_probe(struct i2c_client *client, | |||
461 | chip->rmap = devm_regmap_init_i2c(client, rmap_config); | 461 | chip->rmap = devm_regmap_init_i2c(client, rmap_config); |
462 | if (IS_ERR(chip->rmap)) { | 462 | if (IS_ERR(chip->rmap)) { |
463 | ret = PTR_ERR(chip->rmap); | 463 | ret = PTR_ERR(chip->rmap); |
464 | dev_err(chip->dev, "Failed to intialise regmap: %d\n", ret); | 464 | dev_err(chip->dev, "Failed to initialise regmap: %d\n", ret); |
465 | return ret; | 465 | return ret; |
466 | } | 466 | } |
467 | 467 | ||
diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.c b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.c index 3f77d0863543..6fad22adbbb9 100644 --- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.c +++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.c | |||
@@ -585,7 +585,7 @@ int bnx2x_vf_mcast(struct bnx2x *bp, struct bnx2x_virtf *vf, | |||
585 | mcast.mcast_list_len = mc_num; | 585 | mcast.mcast_list_len = mc_num; |
586 | rc = bnx2x_config_mcast(bp, &mcast, BNX2X_MCAST_CMD_SET); | 586 | rc = bnx2x_config_mcast(bp, &mcast, BNX2X_MCAST_CMD_SET); |
587 | if (rc) | 587 | if (rc) |
588 | BNX2X_ERR("Faled to set multicasts\n"); | 588 | BNX2X_ERR("Failed to set multicasts\n"); |
589 | } else { | 589 | } else { |
590 | /* clear existing mcasts */ | 590 | /* clear existing mcasts */ |
591 | rc = bnx2x_config_mcast(bp, &mcast, BNX2X_MCAST_CMD_DEL); | 591 | rc = bnx2x_config_mcast(bp, &mcast, BNX2X_MCAST_CMD_DEL); |
diff --git a/drivers/net/ethernet/qlogic/qed/qed_int.c b/drivers/net/ethernet/qlogic/qed/qed_int.c index 2adedc6fb6cf..bed6bfd0201e 100644 --- a/drivers/net/ethernet/qlogic/qed/qed_int.c +++ b/drivers/net/ethernet/qlogic/qed/qed_int.c | |||
@@ -1377,7 +1377,7 @@ static const char *attn_master_to_str(u8 master) | |||
1377 | case 9: return "DBU"; | 1377 | case 9: return "DBU"; |
1378 | case 10: return "DMAE"; | 1378 | case 10: return "DMAE"; |
1379 | default: | 1379 | default: |
1380 | return "Unkown"; | 1380 | return "Unknown"; |
1381 | } | 1381 | } |
1382 | } | 1382 | } |
1383 | 1383 | ||
@@ -1555,7 +1555,7 @@ static int qed_dorq_attn_cb(struct qed_hwfn *p_hwfn) | |||
1555 | DORQ_REG_DB_DROP_DETAILS); | 1555 | DORQ_REG_DB_DROP_DETAILS); |
1556 | 1556 | ||
1557 | DP_INFO(p_hwfn->cdev, | 1557 | DP_INFO(p_hwfn->cdev, |
1558 | "DORQ db_drop: adress 0x%08x Opaque FID 0x%04x Size [bytes] 0x%08x Reason: 0x%08x\n", | 1558 | "DORQ db_drop: address 0x%08x Opaque FID 0x%04x Size [bytes] 0x%08x Reason: 0x%08x\n", |
1559 | qed_rd(p_hwfn, p_hwfn->p_dpc_ptt, | 1559 | qed_rd(p_hwfn, p_hwfn->p_dpc_ptt, |
1560 | DORQ_REG_DB_DROP_DETAILS_ADDRESS), | 1560 | DORQ_REG_DB_DROP_DETAILS_ADDRESS), |
1561 | (u16)(details & QED_DORQ_ATTENTION_OPAQUE_MASK), | 1561 | (u16)(details & QED_DORQ_ATTENTION_OPAQUE_MASK), |
diff --git a/drivers/net/ethernet/qlogic/qed/qed_sp_commands.c b/drivers/net/ethernet/qlogic/qed/qed_sp_commands.c index 2888eb0628f8..c42c0ec49826 100644 --- a/drivers/net/ethernet/qlogic/qed/qed_sp_commands.c +++ b/drivers/net/ethernet/qlogic/qed/qed_sp_commands.c | |||
@@ -369,7 +369,7 @@ int qed_sp_pf_start(struct qed_hwfn *p_hwfn, | |||
369 | p_ramrod->personality = PERSONALITY_RDMA_AND_ETH; | 369 | p_ramrod->personality = PERSONALITY_RDMA_AND_ETH; |
370 | break; | 370 | break; |
371 | default: | 371 | default: |
372 | DP_NOTICE(p_hwfn, "Unkown personality %d\n", | 372 | DP_NOTICE(p_hwfn, "Unknown personality %d\n", |
373 | p_hwfn->hw_info.personality); | 373 | p_hwfn->hw_info.personality); |
374 | p_ramrod->personality = PERSONALITY_ETH; | 374 | p_ramrod->personality = PERSONALITY_ETH; |
375 | } | 375 | } |
diff --git a/drivers/net/wireless/ath/ath10k/pci.c b/drivers/net/wireless/ath/ath10k/pci.c index 0457e315d336..b541a1c74488 100644 --- a/drivers/net/wireless/ath/ath10k/pci.c +++ b/drivers/net/wireless/ath/ath10k/pci.c | |||
@@ -2091,7 +2091,7 @@ int ath10k_pci_init_config(struct ath10k *ar) | |||
2091 | 2091 | ||
2092 | ret = ath10k_pci_diag_read32(ar, ealloc_targ_addr, &ealloc_value); | 2092 | ret = ath10k_pci_diag_read32(ar, ealloc_targ_addr, &ealloc_value); |
2093 | if (ret != 0) { | 2093 | if (ret != 0) { |
2094 | ath10k_err(ar, "Faile to get early alloc val: %d\n", ret); | 2094 | ath10k_err(ar, "Failed to get early alloc val: %d\n", ret); |
2095 | return ret; | 2095 | return ret; |
2096 | } | 2096 | } |
2097 | 2097 | ||
diff --git a/drivers/net/wireless/ath/wil6210/txrx.c b/drivers/net/wireless/ath/wil6210/txrx.c index 4c38520d4dd2..3553e4f93b20 100644 --- a/drivers/net/wireless/ath/wil6210/txrx.c +++ b/drivers/net/wireless/ath/wil6210/txrx.c | |||
@@ -326,7 +326,7 @@ static void wil_rx_add_radiotap_header(struct wil6210_priv *wil, | |||
326 | 326 | ||
327 | if (skb_headroom(skb) < rtap_len && | 327 | if (skb_headroom(skb) < rtap_len && |
328 | pskb_expand_head(skb, rtap_len, 0, GFP_ATOMIC)) { | 328 | pskb_expand_head(skb, rtap_len, 0, GFP_ATOMIC)) { |
329 | wil_err(wil, "Unable to expand headrom to %d\n", rtap_len); | 329 | wil_err(wil, "Unable to expand headroom to %d\n", rtap_len); |
330 | return; | 330 | return; |
331 | } | 331 | } |
332 | 332 | ||
diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/fw.c b/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/fw.c index 1186755e55b8..e5505387260b 100644 --- a/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/fw.c +++ b/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/fw.c | |||
@@ -134,7 +134,7 @@ static void _rtl8723e_fill_h2c_command(struct ieee80211_hw *hw, u8 element_id, | |||
134 | wait_h2c_limmit--; | 134 | wait_h2c_limmit--; |
135 | if (wait_h2c_limmit == 0) { | 135 | if (wait_h2c_limmit == 0) { |
136 | RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD, | 136 | RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD, |
137 | "Wating too long for FW read clear HMEBox(%d)!\n", | 137 | "Waiting too long for FW read clear HMEBox(%d)!\n", |
138 | boxnum); | 138 | boxnum); |
139 | break; | 139 | break; |
140 | } | 140 | } |
diff --git a/drivers/scsi/aic7xxx/aicasm/aicasm.c b/drivers/scsi/aic7xxx/aicasm/aicasm.c index 2e3117aa382f..21ac265280bf 100644 --- a/drivers/scsi/aic7xxx/aicasm/aicasm.c +++ b/drivers/scsi/aic7xxx/aicasm/aicasm.c | |||
@@ -254,7 +254,7 @@ main(int argc, char *argv[]) | |||
254 | argv += optind; | 254 | argv += optind; |
255 | 255 | ||
256 | if (argc != 1) { | 256 | if (argc != 1) { |
257 | fprintf(stderr, "%s: No input file specifiled\n", appname); | 257 | fprintf(stderr, "%s: No input file specified\n", appname); |
258 | usage(); | 258 | usage(); |
259 | /* NOTREACHED */ | 259 | /* NOTREACHED */ |
260 | } | 260 | } |
diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c index 1dfa56a5f1c5..40e9fc2355ca 100644 --- a/drivers/usb/dwc3/gadget.c +++ b/drivers/usb/dwc3/gadget.c | |||
@@ -2491,7 +2491,7 @@ static void dwc3_gadget_conndone_interrupt(struct dwc3 *dwc) | |||
2491 | */ | 2491 | */ |
2492 | WARN_ONCE(dwc->revision < DWC3_REVISION_240A | 2492 | WARN_ONCE(dwc->revision < DWC3_REVISION_240A |
2493 | && dwc->has_lpm_erratum, | 2493 | && dwc->has_lpm_erratum, |
2494 | "LPM Erratum not available on dwc3 revisisions < 2.40a\n"); | 2494 | "LPM Erratum not available on dwc3 revisions < 2.40a\n"); |
2495 | 2495 | ||
2496 | if (dwc->has_lpm_erratum && dwc->revision >= DWC3_REVISION_240A) | 2496 | if (dwc->has_lpm_erratum && dwc->revision >= DWC3_REVISION_240A) |
2497 | reg |= DWC3_DCTL_LPM_ERRATA(dwc->lpm_nyet_threshold); | 2497 | reg |= DWC3_DCTL_LPM_ERRATA(dwc->lpm_nyet_threshold); |
diff --git a/scripts/gcc-plugins/latent_entropy_plugin.c b/scripts/gcc-plugins/latent_entropy_plugin.c index 8160f1c1b56e..12541126575b 100644 --- a/scripts/gcc-plugins/latent_entropy_plugin.c +++ b/scripts/gcc-plugins/latent_entropy_plugin.c | |||
@@ -619,7 +619,7 @@ __visible int plugin_init(struct plugin_name_args *plugin_info, | |||
619 | enabled = false; | 619 | enabled = false; |
620 | continue; | 620 | continue; |
621 | } | 621 | } |
622 | error(G_("unkown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key); | 622 | error(G_("unknown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key); |
623 | } | 623 | } |
624 | 624 | ||
625 | register_callback(plugin_name, PLUGIN_INFO, NULL, | 625 | register_callback(plugin_name, PLUGIN_INFO, NULL, |
diff --git a/scripts/gcc-plugins/sancov_plugin.c b/scripts/gcc-plugins/sancov_plugin.c index 7ea0b3f50739..70f5fe0d590a 100644 --- a/scripts/gcc-plugins/sancov_plugin.c +++ b/scripts/gcc-plugins/sancov_plugin.c | |||
@@ -126,7 +126,7 @@ __visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gc | |||
126 | enable = false; | 126 | enable = false; |
127 | continue; | 127 | continue; |
128 | } | 128 | } |
129 | error(G_("unkown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key); | 129 | error(G_("unknown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key); |
130 | } | 130 | } |
131 | 131 | ||
132 | register_callback(plugin_name, PLUGIN_INFO, NULL, &sancov_plugin_info); | 132 | register_callback(plugin_name, PLUGIN_INFO, NULL, &sancov_plugin_info); |
diff --git a/tools/power/acpi/tools/ec/ec_access.c b/tools/power/acpi/tools/ec/ec_access.c index 6b8aaed44f2c..5f50642386db 100644 --- a/tools/power/acpi/tools/ec/ec_access.c +++ b/tools/power/acpi/tools/ec/ec_access.c | |||
@@ -46,7 +46,7 @@ void usage(char progname[], int exit_status) | |||
46 | puts("\t-b offset : Read value at byte_offset (in hex)"); | 46 | puts("\t-b offset : Read value at byte_offset (in hex)"); |
47 | puts("\t-w offset -v value : Write value at byte_offset"); | 47 | puts("\t-w offset -v value : Write value at byte_offset"); |
48 | puts("\t-h : Print this help\n\n"); | 48 | puts("\t-h : Print this help\n\n"); |
49 | puts("Offsets and values are in hexadecimal number sytem."); | 49 | puts("Offsets and values are in hexadecimal number system."); |
50 | puts("The offset and value must be between 0 and 0xff."); | 50 | puts("The offset and value must be between 0 and 0xff."); |
51 | exit(exit_status); | 51 | exit(exit_status); |
52 | } | 52 | } |